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

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

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

.page-support__intro-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-support__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  border: 2px solid transparent;
}

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

.page-support__btn-secondary {
  background: #11271B; /* Card BG */
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

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

.page-support__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  box-sizing: border-box;
}

.page-support__section-heading {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-support__faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 15px 20px;
  color: #F2FFF6; /* Text Main */
  transition: all 0.3s ease;
}

.page-support__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green */
}

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

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

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

.page-support__faq-answer {
  padding-top: 15px;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

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

.page-support__faq-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-support__faq-link:hover {
  text-decoration: underline;
}

.page-support__sub-heading {
  font-size: clamp(1.5em, 2.5vw, 2em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-support__additional-resources {
  margin-bottom: 40px;
  text-align: center;
}

.page-support__additional-resources p {
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-support__resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-support__resource-list li {
  margin-bottom: 10px;
}

.page-support__resource-list a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
}

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

.page-support__contact-section {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-support__contact-section p {
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.page-support__contact-list li {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-support__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  filter: brightness(0.8);
}

.page-support__cta-bottom {
  padding: 60px 20px;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-support__cta-bottom .page-support__section-heading {
  color: #F2C14E; /* Gold */
}

.page-support__cta-bottom p {
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

/* General text styles */
.page-support h1, .page-support h2, .page-support h3, .page-support h4, .page-support h5, .page-support h6 {
  color: #F2FFF6;
}

.page-support p, .page-support li {
  color: #A7D9B8;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-support__hero-content {
    padding: 15px;
  }

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

  .page-support__intro-text {
    font-size: 0.95em;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px;
  }

  .page-support__content-area {
    padding: 30px 15px;
  }

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

  .page-support__section-description {
    font-size: 0.9em;
  }

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

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

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

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

  .page-support__contact-section {
    padding: 20px;
  }

  .page-support__cta-bottom {
    padding: 40px 15px;
  }

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

  .page-support__hero-image-wrapper,
  .page-support__hero-section,
  .page-support__content-area,
  .page-support__faq-container,
  .page-support__faq-item,
  .page-support__additional-resources,
  .page-support__contact-section,
  .page-support__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}