/* style/support.css */
.page-support {
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--background, #08160F);
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  max-width: 1920px;
  display: block;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-support__hero-content {
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.page-support__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-support__intro-section,
.page-support__video-guide-section,
.page-support__faq-section,
.page-support__contact-cta-section,
.page-support__final-cta-section {
  padding: 60px 0;
  background-color: var(--background, #08160F);
}

.page-support__section-title {
  font-size: 2.5rem;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-support__sub-title {
  font-size: 1.8rem;
  color: var(--text-main, #F2FFF6);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-support__text-block {
  font-size: 1.05rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  text-align: justify;
}

.page-support__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  max-width: 800px; /* Ensure content images are not excessively wide */
  min-width: 200px; /* Minimum size requirement */
}

.page-support__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-sizing: border-box;
}

.page-support__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

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

.page-support__faq-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  padding: 20px 30px;
  border: 1px solid var(--border, #2E7A4E);
  box-sizing: border-box;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  list-style: none; /* For details/summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none;
}

.page-support__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow, #57E38D);
}

.page-support__faq-answer {
  padding-top: 15px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.8;
}

/* Ensure details element's content is shown when open */
.page-support__faq-item[open] .page-support__faq-answer {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support__hero-section {
    padding-bottom: 40px;
  }

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

  .page-support__hero-description {
    font-size: 1rem;
  }

  .page-support__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-support__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-support__sub-title {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .page-support__text-block {
    font-size: 0.95rem;
  }

  .page-support__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-bottom: 56.25% !important;
  }

  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support__faq-item {
    padding: 15px 20px;
  }

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

  .page-support__faq-answer {
    font-size: 0.9rem;
  }
}