/* style/support.css */
:root {
  --page-support-primary-color: #11A84E;
  --page-support-secondary-color: #22C768;
  --page-support-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-support-card-bg: #11271B;
  --page-support-background: #08160F;
  --page-support-text-main: #F2FFF6;
  --page-support-text-secondary: #A7D9B8;
  --page-support-border-color: #2E7A4E;
  --page-support-glow-color: #57E38D;
  --page-support-gold-color: #F2C14E;
  --page-support-divider-color: #1E3A2A;
  --page-support-deep-green: #0A4B2C;
}

.page-support {
  background-color: var(--page-support-background);
  color: var(--page-support-text-main);
  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;
  justify-content: center;
  padding: 10px 0 60px 0; /* body already handles header offset */
  text-align: center;
  background-color: var(--page-support-deep-green);
}

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

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-support__hero-content {
  max-width: 900px;
  padding: 30px 20px;
  margin-top: -150px; /* Overlap slightly with image for visual flow */
  position: relative; /* Ensure content is above image for z-index */
  z-index: 10; 
  background-color: rgba(17, 40, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-support-border-color);
}

.page-support__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size for H1 */
  color: var(--page-support-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-support__subtitle {
  font-size: 1.1em;
  color: var(--page-support-text-secondary);
  margin-bottom: 30px;
}

.page-support__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--page-support-divider-color);
}

.page-support__section:last-of-type {
  border-bottom: none;
}

.page-support__section-title {
  font-size: 2.5em;
  color: var(--page-support-primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(34, 199, 104, 0.3);
}

.page-support__sub-title {
  font-size: 1.8em;
  color: var(--page-support-text-main);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-support__text-block {
  font-size: 1em;
  margin-bottom: 15px;
  color: var(--page-support-text-secondary);
}

.page-support__text-block a {
  color: var(--page-support-gold-color);
  text-decoration: underline;
}

.page-support__highlight {
  color: var(--page-support-gold-color);
  font-weight: bold;
}

.page-support__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: var(--page-support-text-secondary);
}

.page-support__list-item {
  margin-bottom: 10px;
  line-height: 1.5;
}

.page-support__list-item strong {
  color: var(--page-support-text-main);
}

.page-support__nested-list {
  list-style: circle;
  margin-left: 20px;
  margin-top: 5px;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-support__btn-primary {
  background: var(--page-support-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-support__btn-secondary {
  background: none;
  color: var(--page-support-primary-color);
  border: 2px solid var(--page-support-primary-color);
}

.page-support__btn-secondary:hover {
  background: rgba(17, 168, 78, 0.1);
  color: var(--page-support-gold-color);
  border-color: var(--page-support-gold-color);
}

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

.page-support__grid--reverse {
  grid-template-areas: "text image";
}

.page-support__grid--reverse .page-support__grid-item:first-child {
  grid-area: text;
}

.page-support__grid--reverse .page-support__grid-item:last-child {
  grid-area: image;
}

.page-support__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-support__image--faq {
  margin-top: 40px;
}

/* FAQ Section */
.page-support__faq-list {
  margin-top: 30px;
}

.page-support__faq-item {
  background-color: var(--page-support-card-bg);
  border: 1px solid var(--page-support-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-support__faq-item details > summary {
  list-style: none;
}

.page-support__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--page-support-text-main);
  cursor: pointer;
  background-color: var(--page-support-deep-green);
  border-bottom: 1px solid var(--page-support-border-color);
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: var(--page-support-primary-color);
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-support-gold-color);
}

.page-support__faq-answer {
  padding: 15px 25px;
  font-size: 0.95em;
  color: var(--page-support-text-secondary);
  background-color: rgba(17, 39, 27, 0.7); /* Slightly lighter card BG with transparency */
}

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

/* Contact List */
.page-support__contact-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.page-support__contact-list .page-support__list-item {
  padding-left: 25px;
  position: relative;
}

.page-support__contact-list .page-support__list-item::before {
  content: '📞'; /* Example icon */
  position: absolute;
  left: 0;
  color: var(--page-support-gold-color);
}

.page-support__contact-list .page-support__list-item:nth-child(2)::before {
  content: '📧';
}

.page-support__contact-list .page-support__list-item:nth-child(3)::before {
  content: '☎️';
}

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

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
    padding-bottom: 40px;
  }

  .page-support__hero-content {
    margin-top: -80px;
    padding: 20px;
    max-width: 95%;
  }

  .page-support__main-title {
    font-size: 2em;
  }

  .page-support__subtitle {
    font-size: 1em;
  }

  .page-support__section {
    padding: 40px 0;
  }

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

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

  .page-support__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-support__grid--reverse {
    grid-template-areas: unset;
  }

  .page-support__grid--reverse .page-support__grid-item:first-child {
    grid-area: unset;
  }

  .page-support__grid--reverse .page-support__grid-item:last-child {
    grid-area: unset;
  }

  /* Mobile image, video, button adaptations */
  .page-support img,
  .page-support video,
  .page-support__video {
    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-image-wrapper,
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper,
  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-support__btn,
  .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;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    flex-direction: column !important;
    gap: 10px;
  }

  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-support__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }

  .page-support__subtitle {
    font-size: 0.95em;
  }

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

  .page-support__sub-title {
    font-size: 1.3em;
  }
}