.page-support {
  color: #333333; /* Default text color for light body background */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a decent height */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #0A2463; /* Dark blue background for hero content */
  color: #ffffff;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dim the background image for text readability */
}

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-support__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-support__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-support__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-support__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark blue */
  text-align: center;
  margin-bottom: 20px;
}

.page-support__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-question {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-support__faq-question.active::after {
  content: '-';
}

.page-support__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  display: none; /* Hidden by default, toggled by JS */
}

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

.page-support__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-support__faq-answer a {
  color: #0A2463;
  text-decoration: underline;
}

.page-support__faq-image {
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

.page-support__contact-section .page-support__section-title,
.page-support__contact-section .page-support__section-intro {
  color: #ffffff;
}

.page-support__contact-section .page-support__section-title {
  color: #FFD700; /* Gold for title */
}

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

.page-support__contact-method {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-support__contact-method:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-support__contact-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__contact-description {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-support__contact-method .page-support__button {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue text */
  border: none;
  padding: 12px 25px;
  font-size: 1em;
}

.page-support__contact-method .page-support__button:hover {
  background-color: #e6c200;
}

.page-support__contact-image {
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__resources-section {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

.page-support__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-support__resource-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
}

.page-support__card-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-support__card-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-support__card-title a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-support__card-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

.page-support__resources-image {
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__commitment-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7f 100%);
  color: #ffffff;
  text-align: center;
}

.page-support__commitment-section .page-support__section-title {
  color: #FFD700;
}

.page-support__commitment-section .page-support__section-intro {
  color: #f0f0f0;
}

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

.page-support__commitment-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__commitment-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support__commitment-text {
  font-size: 0.95em;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-support__commitment-image {
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.page-support__button--cta {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #FFD700;
  margin-right: 20px;
}

.page-support__button--cta:hover {
  background-color: #e6c200;
}

.page-support__button--cta-secondary {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
}

.page-support__button--cta-secondary:hover {
  background-color: rgba(10, 36, 99, 0.1);
}

.page-support__cta-image {
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-support__button--cta {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 1em;
  }
  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__resources-grid,
  .page-support__commitment-points {
    grid-template-columns: 1fr;
  }

  /* Mobile content area image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__resources-image,
  .page-support__commitment-image,
  .page-support__cta-image {
    width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-title {
    font-size: 1.5em;
  }
  .page-support__commitment-heading {
    font-size: 1.3em;
  }
}

/* Ensure all images in content area are at least 200px wide/high */
.page-support img:not(.page-support__hero-image) {
    min-width: 200px;
    min-height: 200px;
}