.page-support {
  background-color: #100224; /* Deep Navy from general rules, or similar dark */
  color: #F3F8FF; /* Text Main */
  font-family: sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #113B7A 0%, #100224 100%);
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
}

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

.page-support__hero-content {
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
}

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

.page-support__hero-description {
  font-size: 1.1em;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #F3F8FF;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-support__section {
  padding: 60px 20px;
  border-top: 1px solid #1B3357; /* Divider */
  background-color: #10233F; /* Card BG */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-support__section:last-of-type {
    margin-bottom: 0;
}

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

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

.page-support__section-description {
  font-size: 1.05em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #AFC4E8;
}

.page-support__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__info-card {
  background-color: #08162B; /* Deep Navy */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-support__card-image {
  width: 100%;
  max-width: 400px; /* Allow larger images within cards */
  height: 300px; /* Fixed height for consistency */
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-support__card-text {
  color: #AFC4E8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__card-link {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-support__card-link:hover {
  color: #F2C14E; /* Gold */
}

.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #08162B;
  border: 1px solid #244D84;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-support__faq-question {
  font-size: 1.3em;
  font-weight: 600;
  padding: 20px 25px;
  cursor: pointer;
  color: #F3F8FF;
  position: relative;
  display: block;
  margin: 0;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support__faq-item.is-active .page-support__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-support__faq-answer {
  padding: 0 25px 20px;
  color: #AFC4E8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-support__faq-item.is-active .page-support__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding-top: 10px;
}

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

.page-support__faq-link {
  color: #4FA8FF;
  text-decoration: none;
  font-weight: 500;
}

.page-support__faq-link:hover {
  color: #F2C14E;
}

.page-support__view-all-faq {
  text-align: center;
  margin-top: 40px;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__contact-card {
  background-color: #08162B;
  border: 1px solid #244D84;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-support__contact-icon {
  width: 100%;
  max-width: 250px;
  height: 250px; /* Fixed height for consistency */
  display: block;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-size for images */
  min-height: 200px;
  object-fit: contain; /* Icons might be better contained */
}

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

.page-support__contact-text {
  color: #AFC4E8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__contact-link {
  color: #4FA8FF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-support__contact-link:hover {
  color: #F2C14E;
}

/* Responsive Design */
@media (max-width: 849px) {
  .page-support__hero-section {
    padding-bottom: 30px;
  }
  .page-support__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 0.95em;
  }
  .page-support__info-cards,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__card-image, .page-support__contact-icon {
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
    height: auto;
  }
  .page-support__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 549px) {
  .page-support__hero-section {
    padding-bottom: 20px;
  }
  .page-support__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-support__section {
    padding: 40px 15px;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-support__faq-question::after {
    right: 20px;
  }
  .page-support__faq-answer {
    padding: 0 20px 15px;
  }
}

/* Ensure all content area images are responsive and not too small on mobile */
@media (max-width: 768px) {
  .page-support img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* Content area image CSS size lower bound enforcement */
.page-support img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-support__contact-icon {
    object-fit: contain;
}