.page-support {
  color: #333333; /* Default text color for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A2E44; /* Primary color as a fallback/accent */
  color: #ffffff;
  padding: 0;
}

.page-support__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6; /* Slightly dim the image to make text pop */
}

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700;
  line-height: 1.2;
}

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

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

.page-support__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-support__button--primary {
  background-color: #FFD700;
  color: #1A2E44;
}

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

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

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
}

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

.page-support__section-title {
  font-size: 2.8em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
}

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

.page-support__faq-section {
  background-color: #f9f9f9;
}

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

.page-support__faq-item {
  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__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #1A2E44;
  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-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
}

.page-support__faq-item.active .page-support__faq-answer {
  display: block;
}

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

.page-support__faq-cta {
  text-align: center;
  margin-top: 60px;
}

.page-support__faq-cta-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #1A2E44;
}

.page-support__contact-section {
  background-color: #ffffff;
}

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

.page-support__contact-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
  background-color: #e8e8e8;
}

.page-support__contact-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure images are responsive */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: contain;
}

.page-support__contact-method {
  font-size: 1.8em;
  color: #1A2E44;
  margin-bottom: 10px;
}

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

.page-support__resources-section {
  background-color: #f9f9f9;
}

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

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

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

.page-support__resource-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-support__resource-title {
  font-size: 1.5em;
  color: #1A2E44;
  margin: 20px 15px 10px;
}

.page-support__resource-title a {
  color: #1A2E44;
  text-decoration: none;
}

.page-support__resource-title a:hover {
  color: #FFD700;
}

.page-support__resource-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  padding: 0 15px 20px;
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-support__trust-section {
  background-color: #1A2E44;
  color: #ffffff;
}

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

.page-support__trust-section .page-support__section-title::after {
  background-color: #FFD700;
}

.page-support__trust-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-support__trust-point {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px 20px;
  transition: background-color 0.3s ease;
}

.page-support__trust-point:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support__trust-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure images are responsive */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
  object-fit: contain;
}

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

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

.page-support__final-cta-section {
  background-color: #FFD700;
  color: #1A2E44;
  text-align: center;
}

.page-support__final-cta-content {
  padding: 80px 20px;
}

.page-support__final-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A2E44;
  line-height: 1.2;
}

.page-support__final-cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__final-cta-actions .page-support__button--primary {
  background-color: #1A2E44;
  color: #FFD700;
}

.page-support__final-cta-actions .page-support__button--primary:hover {
  background-color: #3b5069;
}

.page-support__final-cta-actions .page-support__button--secondary {
  background-color: transparent;
  color: #1A2E44;
  border: 2px solid #1A2E44;
}

.page-support__final-cta-actions .page-support__button--secondary:hover {
  background-color: #1A2E44;
  color: #FFD700;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 2.4em;
  }
  .page-support__final-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-content {
    padding: 15px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    max-width: 300px;
  }
  .page-support__content-area {
    padding: 40px 15px;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-support__faq-grid, .page-support__contact-grid, .page-support__resource-grid, .page-support__trust-points {
    grid-template-columns: 1fr;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-icon, .page-support__trust-icon {
    width: 200px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .page-support__final-cta-title {
    font-size: 2em;
  }
  .page-support__final-cta-description {
    font-size: 1.1em;
  }
  /* Mobile content area images must be responsive and not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__resource-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__contact-method {
    font-size: 1.5em;
  }
  .page-support__final-cta-title {
    font-size: 1.8em;
  }
  .page-support__final-cta-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    gap: 10px;
  }
  .page-support__button {
    width: 90%;
  }
}