/* style/support.css */

.page-support {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
}

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

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

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding */
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

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

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-support__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-support__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-support__btn-secondary:hover {
  background-color: #2E7A4E; /* Border color */
  transform: translateY(-2px);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-section,
.page-support__guides-section,
.page-support__cta-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__contact-section,
.page-support__report-section {
  padding: 80px 0;
  background-color: #08160F; /* Background color */
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-support__faq-image-wrapper,
.page-support__contact-image-wrapper,
.page-support__guides-image-wrapper {
  width: 100%;
}

.page-support__faq-image,
.page-support__contact-image,
.page-support__guides-image,
.page-support__cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

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

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  list-style: none; /* For details/summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-support__faq-answer {
  padding: 0 20px 15px;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-support__contact-method {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  color: #F2FFF6; /* Text Main */
}

.page-support__method-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__contact-method p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
}

.page-support__guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-support__guide-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  padding: 25px;
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__guide-title {
  font-size: 1.25em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__guide-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-support__guide-title a:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-support__guide-card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__report-section {
  text-align: center;
  padding: 60px 20px;
}

.page-support__cta-section .page-support__cta-buttons {
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.page-support__cta-image {
  margin-bottom: 30px;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-support__hero-section {
    padding: 40px 15px;
  }
  .page-support__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__guides-section,
  .page-support__report-section,
  .page-support__cta-section {
    padding: 40px 0 !important; /* Adjust overall section padding */
  }

  .page-support__container {
    padding: 0 15px !important;
  }

  /* Force responsive images, videos, buttons */
  .page-support img,
  .page-support video,
  .page-support__cta-button,
  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important; /* Only for media, not buttons */
    display: block !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-support__hero-image,
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__guides-image,
  .page-support__cta-image {
    width: 100% !important;
    height: auto !important;
  }

  .page-support__hero-section,
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container,
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-support__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-support__hero-content .page-support__cta-buttons .page-support__btn-primary,
  .page-support__hero-content .page-support__cta-buttons .page-support__btn-secondary {
    width: 80% !important; /* Adjust button width for better mobile layout */
    margin: 0 auto !important;
  }

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

  .page-support__contact-grid,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }
  
  .page-support__hero-section {
    padding-top: 10px !important;
  }
}