.page-support {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Default to column for mobile first, then adjust for desktop */
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #2F6BFF; /* Primary color */
  color: #FFFFFF;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-support__hero-image-wrapper {
  width: 100%;
  overflow: hidden; /* Ensure image doesn't spill */
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  min-height: 200px; /* Enforce min image size */
}

.page-support__hero-content {
  max-width: 900px;
  padding: 20px 20px 0;
  z-index: 1; /* Ensure content is above any potential background layers */
}

.page-support__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive H1 font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF; /* White for contrast */
}

.page-support__hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

/* Section Titles */
.page-support__section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

/* Contact Options Section */
.page-support__contact-options-section {
  padding: 40px 20px 60px;
  background-color: #F4F7FB; /* Background */
}

.page-support__options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__option-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.1); /* Light shadow from primary color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px; /* Ensure cards have a decent height */
}

.page-support__option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.2);
}

.page-support__option-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-support__card-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1F2D3D; /* Text Main */
}

.page-support__card-description {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 25px;
  flex-grow: 1; /* Allow description to take available space */
}

.page-support__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  min-width: 160px; /* Ensure button is not too small */
}

.page-support__card-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

/* FAQ Section */
.page-support__faq-section {
  padding: 40px 20px 80px;
  background-color: #F4F7FB; /* Background */
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.1);
}

.page-support__faq-question {
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #2F6BFF; /* Primary color */
  transition: transform 0.3s ease;
}

.page-support__faq-item.is-active .page-support__faq-question::after {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-item.is-active .page-support__faq-answer {
  max-height: 300px; /* Arbitrary large value to allow content to show */
  padding: 0 25px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__faq-link {
  color: #2F6BFF; /* Primary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__faq-link:hover {
  color: #6FA3FF; /* Secondary color */
  text-decoration: underline;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
  background-color: #2F6BFF; /* Primary color */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.page-support__responsible-gaming-section .page-support__section-title {
  color: #FFFFFF;
  padding-top: 0;
  margin-bottom: 25px;
}

.page-support__responsible-gaming-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-support__responsible-gaming-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-support__responsible-gaming-button {
  display: inline-block;
  padding: 14px 30px;
  background: #FFFFFF;
  color: #2F6BFF; /* Primary color */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__responsible-gaming-button:hover {
  background-color: #F0F0F0;
  color: #1a4a9e;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-support__hero-section {
    flex-direction: column; /* Keep column for both, for "image above text" */
    justify-content: flex-start; /* Align content to top */
    align-items: center;
    text-align: center;
    padding-bottom: 60px;
  }

  .page-support__hero-image-wrapper {
    position: relative; /* Not absolute anymore, part of flow */
    width: 100%;
    height: auto;
    max-height: 500px; /* Cap image height on desktop */
    overflow: hidden;
  }

  .page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .page-support__hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 40px 0; /* Adjust padding */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center text for "image above text" */
    text-align: center;
  }

  .page-support__main-title {
    font-size: 3.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-support__hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-support__options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-support__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-support__option-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images are responsive */
  .page-support__contact-options-section img,
  .page-support__faq-section img,
  .page-support__responsible-gaming-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-support__main-title {
    font-size: 2.2rem;
  }
  .page-support__hero-description {
    font-size: 1rem;
  }
  .page-support__cta-button {
    width: 100%;
    max-width: 280px;
  }
  .page-support__options-grid {
    grid-template-columns: 1fr;
  }
  .page-support__option-card {
    min-height: auto; /* Allow height to adjust on small screens */
  }
  .page-support__card-button {
    width: 100%;
  }
  .page-support__section-title {
    font-size: 1.8rem;
  }
  .page-support__faq-question {
    font-size: 1.05rem;
  }
  .page-support__faq-answer {
    font-size: 0.95rem;
  }
  .page-support__responsible-gaming-description {
    font-size: 1rem;
  }
  .page-support__responsible-gaming-button {
    width: 100%;
    max-width: 280px;
  }
}

/* Ensure content area images CSS dimensions are not less than 200px */
.page-support__option-image {
  width: 100%; /* Will be constrained by parent/max-width */
  height: 220px; /* Example fixed height for consistency, if width is >200, this is fine */
  min-width: 200px;
  min-height: 200px;
}
/* General img rules for content area to prevent small sizes */
.page-support img {
  min-width: 200px;
  min-height: 200px;
}

/* Strict image color filter check (negative example, ensure it's not present) */
.page-support img.no-filter {
  filter: none !important; /* This is to ensure no filter, not to add one */
}