.page-support {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-support__hero-section {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #2F6BFF;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-support__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  max-width: 100%;
}

.page-support__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure button is large enough */
  min-height: 48px; /* Ensure button is large enough */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-support__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__info-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-support__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 20px;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #1F2D3D;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-support__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #D6E2FF;
}

.page-support__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-support__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-support__card-text {
  font-size: 1em;
  color: #1F2D3D;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__card-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-support__card-link:hover {
  color: #6FA3FF;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-support__accordion-item {
  background-color: #F4F7FB;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__accordion-header {
  width: 100%;
  background-color: #2F6BFF;
  color: #FFFFFF;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__accordion-header:hover {
  background-color: #6FA3FF;
}

.page-support__accordion-header::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-support__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__accordion-content.open {
  max-height: 500px; /* Adjust based on expected content length */
  padding: 15px 25px 25px 25px;
}

.page-support__accordion-content p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-support__text-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-support__text-link:hover {
  color: #6FA3FF;
}

.page-support__contact-cta {
  padding: 80px 0;
  text-align: center;
  background-color: #2F6BFF;
  color: #FFFFFF;
}

.page-support__contact-cta .page-support__section-title,
.page-support__contact-cta .page-support__section-description {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .page-support__hero-content {
    padding: 15px;
    margin-bottom: 30px;
  }

  .page-support__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-support__intro-text {
    font-size: 1em;
  }

  .page-support__section-title {
    font-size: 1.8em;
  }

  .page-support__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-support__cards-grid {
    grid-template-columns: 1fr;
  }

  .page-support__card {
    padding: 20px;
  }

  .page-support__card-image {
    min-width: 200px;
    min-height: 200px;
  }

  .page-support__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-support__accordion-content.open {
    padding: 10px 20px 20px 20px;
  }

  .page-support__hero-image-wrapper img, 
  .page-support__info-section img, 
  .page-support__cards-grid img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-support__cta-button {
    width: 100%;
    max-width: 280px;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__section-description {
    font-size: 0.9em;
  }
}

/* Ensure all content area images are at least 200px and no filter */
.page-support img {
  min-width: 200px;
  min-height: 200px;
  filter: none; /* Prohibit filter */
}

/* Specific rule to prevent HTML width/height being overridden by smaller CSS */
.page-support img[width][height] {
  /* If CSS tries to set a smaller fixed width/height, it will be ignored in favor of max-width: 100% and aspect ratio */
  max-width: 100%;
  height: auto;
}