/* style/support.css */
.page-support {
  background-color: #08160F;
  color: #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;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Ensure hero image is not too small */
}

.page-support__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual flow, but not text on image */
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with slight transparency */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-support__section-title {
  color: #F2C14E; /* Gold */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-support__text-block {
  color: #F2FFF6; /* Text Main */
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-support__highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

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

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-support__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1); /* Glow with transparency */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Section styles */
.page-support__dark-section {
  background-color: #11271B; /* Card BG */
  padding: 60px 0;
  margin-bottom: 40px;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.page-support__overview-section {
  padding: 60px 0;
}

.page-support__contact-channels-section {
  padding: 60px 0;
}

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

.page-support__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__channel-icon,
.page-support__resource-image,
.page-support__commitment-icon {
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 8px;
  display: block;
}

.page-support__channel-title,
.page-support__resource-title,
.page-support__commitment-title {
  color: #F2C14E; /* Gold */
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-support__channel-description,
.page-support__resource-description,
.page-support__commitment-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__self-help-section {
  padding: 60px 0;
}

.page-support__faq-section {
  padding: 60px 0;
}

.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #F2FFF6; /* Text Main */
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2C14E; /* Gold */
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  transition: background-color 0.3s ease;
  list-style: none; /* For <details> summary */
}

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

.page-support__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  padding: 20px 30px 30px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-support__faq-answer p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__faq-answer .page-support__btn-primary,
.page-support__faq-answer .page-support__btn-secondary {
  margin-top: 10px;
}

.page-support__commitment-section {
  padding: 60px 0;
}

.page-support__final-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
}

.page-support__link-cta {
  color: #57E38D; /* Glow */
  text-decoration: underline;
  font-weight: bold;
}

.page-support__link-cta:hover {
  color: #F2C14E; /* Gold */
}

/* General image styles for content */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }

  .page-support__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
}

@media (max-width: 768px) {
  .page-support__container {
    padding: 0 15px;
  }

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

  .page-support__hero-content {
    margin-top: -60px;
    padding: 25px 10px;
  }

  .page-support__main-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
  }

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

  .page-support__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-support__text-block {
    font-size: 1em;
  }

  .page-support__channels-grid,
  .page-support__resources-grid,
  .page-support__commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__card {
    padding: 25px;
  }

  .page-support__channel-title,
  .page-support__resource-title,
  .page-support__commitment-title {
    font-size: 1.3em;
  }

  .page-support__channel-description,
  .page-support__resource-description,
  .page-support__commitment-description {
    font-size: 0.9em;
  }

  .page-support__faq-question {
    padding: 18px 25px;
    font-size: 1em;
  }

  .page-support__faq-answer {
    padding: 18px 25px 25px;
    font-size: 0.95em;
  }

  .page-support__dark-section,
  .page-support__overview-section,
  .page-support__contact-channels-section,
  .page-support__self-help-section,
  .page-support__faq-section,
  .page-support__commitment-section {
    padding: 40px 0;
  }

  /* Mobile specific image and container rules */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__contact-channels-section,
  .page-support__self-help-section,
  .page-support__commitment-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-support__hero-cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-support__hero-cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-support__video-section { /* If a video section were present */
    padding-top: 10px !important;
  }
}