.page-support {
  background-color: #F5F7FA;
  color: #333333;
  font-family: Arial, sans-serif;
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  background-color: #100224; /* Dark background for hero */
  color: #FFFFFF;
}

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

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

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

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

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

.page-support__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.page-support__btn--primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  border: none;
}

.page-support__btn--primary:hover {
  opacity: 0.9;
}

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

.page-support__btn--secondary:hover {
  background-color: #FF5A4F;
  color: #FFFFFF;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__resources-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__section-title {
  font-size: 2em;
  font-weight: bold;
  color: #E53935;
  text-align: center;
  margin-bottom: 30px;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-support__faq-question {
  font-size: 1.2em;
  color: #333333;
  margin: 0;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-support__faq-item.is-active .page-support__faq-question::after {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
  padding-top: 0;
}

.page-support__faq-item.is-active .page-support__faq-answer {
  max-height: 200px; /* Arbitrary max-height, adjust if content is longer */
  padding-top: 15px;
}

.page-support__faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.page-support__contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.page-support__contact-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-support__contact-text p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-support__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-support__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-support__contact-list li strong {
  color: #E53935;
}

.page-support__contact-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.page-support__resources-intro {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-support__resource-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 25px;
  text-decoration: none;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px; /* Ensure cards have some height */
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-support__resource-title {
  font-size: 1.3em;
  color: #E53935;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-support__resource-description {
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-support__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-support__intro-paragraph {
    font-size: 1rem;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-support__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__resources-section {
    padding: 30px 15px;
  }

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

  .page-support__contact-content {
    flex-direction: column;
  }

  .page-support__contact-text,
  .page-support__contact-image-wrapper {
    min-width: unset;
    width: 100%;
  }

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

  /* Ensure all images in content area are responsive and not too small */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-content {
    padding: 15px;
  }

  .page-support__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

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

  .page-support__faq-question {
    font-size: 1.1em;
  }

  .page-support__resource-title {
    font-size: 1.2em;
  }
}