.page-support {
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A192F; /* Fallback */
}

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

.page-support__hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Ensure a minimum height for the hero */
}

.page-support__hero-content {
  position: absolute;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__resources-section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-support__faq-item {
  background-color: rgba(30, 144, 255, 0.1);
  border: 1px solid #1E90FF;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-support__faq-item:hover {
  background-color: rgba(30, 144, 255, 0.2);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

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

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

.page-support__faq-answer {
  font-size: 1em;
  color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-top: 10px;
}

.page-support__faq-answer a {
  color: #1E90FF;
  text-decoration: none;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__faq-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-support__faq-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

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

.page-support__contact-card {
  background-color: rgba(255, 215, 0, 0.1);
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
}

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

.page-support__card-description {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-support__card-button {
  display: inline-block;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__card-button:hover {
  background-color: #1565b3;
}

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

.page-support__resource-card {
  display: block;
  background-color: rgba(30, 144, 255, 0.1);
  border: 1px solid #1E90FF;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-support__resource-image {
  width: 100%;
  height: 267px;
  object-fit: cover;
  border-bottom: 1px solid #1E90FF;
  min-width: 200px;
  min-height: 200px;
}

.page-support__resource-card h3 {
  font-size: 1.3em;
  color: #FFD700;
  padding: 15px 20px 0;
}

.page-support__resource-card p {
  padding: 0 20px 20px;
  color: #f0f0f0;
}

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

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__faq-answer {
    font-size: 0.95em;
  }
  .page-support__contact-options,
  .page-support__resource-cards {
    grid-template-columns: 1fr;
  }
  .page-support__hero-image,
  .page-support__faq-image,
  .page-support__contact-icon,
  .page-support__resource-image {
    max-width: 100%;
    height: auto;
  }
  .page-support__hero-section {
    min-height: 400px;
  }
  .page-support__hero-content {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 0.9em;
  }
  .page-support__faq-item {
    padding: 15px;
  }
  .page-support__faq-question {
    font-size: 1em;
  }
  .page-support__faq-answer {
    font-size: 0.9em;
  }
  .page-support__contact-card,
  .page-support__resource-card {
    padding: 20px;
  }
  .page-support__card-title {
    font-size: 1.3em;
  }
  .page-support__card-description {
    font-size: 0.9em;
  }
  .page-support__card-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}

/* Ensure all images within .page-support are at least 200px wide/high */
.page-support img {
  min-width: 200px;
  min-height: 200px;
}