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

.page-support a {
  color: #2AD16F; /* Lighter shade of primary for links */
  text-decoration: none;
}

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

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

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.page-support__hero-title {
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* No fixed font-size for H1, relying on relative sizing or clamp if needed */
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Example clamp for responsive H1 */
}

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

.page-support__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* For responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-support__cta-button--small {
  padding: 12px 25px;
  font-size: 0.9em;
}

.page-support__section-title {
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-support__faq-section,
.page-support__guides-section,
.page-support__contact-section,
.page-support__policies-section,
.page-support__why-choose-us-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* Remove default marker for details summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.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); /* Rotate '+' to 'x' or similar effect */
}

.page-support__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.8;
}

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

.page-support__guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-support__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
  display: block;
}

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

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

.page-support__guide-title a:hover {
  text-decoration: underline;
  color: #2AD16F;
}

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

.page-support__guide-button {
  display: inline-block;
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%; /* For responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__guide-button:hover {
  background-color: #13994A;
}

.page-support__contact-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-support__contact-info {
  flex: 1;
  min-width: 300px;
}

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

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

.page-support__contact-methods li {
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-support__method-label {
  color: #57E38D; /* Glow */
  margin-right: 10px;
}

.page-support__contact-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

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

.page-support__policy-item {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

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

.page-support__policy-title a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-support__policy-title a:hover {
  text-decoration: underline;
  color: #2AD16F;
}

.page-support__policy-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__policy-link {
  display: inline-block;
  color: #57E38D; /* Glow */
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__policy-link:hover {
  color: #2AD16F;
}

.page-support__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-support__benefit-item {
  background: #0A4B2C; /* Deep Green, slightly different from Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
}

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

.page-support__benefit-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

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

  .page-support__hero-section {
    padding: 10px 15px 40px 15px; /* Adjust padding for mobile */
  }

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

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

  .page-support__cta-button {
    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__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__contact-section,
  .page-support__policies-section,
  .page-support__why-choose-us-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-support__guide-cards,
  .page-support__policy-list,
  .page-support__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-support__contact-info,
  .page-support__contact-image {
    min-width: unset;
    width: 100%;
  }

  /* Image and video responsive rules */
  .page-support img,
  .page-support video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Containers for images/videos/buttons */
  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__contact-section,
  .page-support__policies-section,
  .page-support__why-choose-us-section,
  .page-support__guide-card,
  .page-support__policy-item,
  .page-support__benefit-item,
  .page-support__contact-content,
  .page-support__guide-cards,
  .page-support__policy-list,
  .page-support__benefits-list,
  .page-support__contact-info {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-support__hero-image {
    height: 100%; /* Ensure hero image covers background */
  }

  .page-support__video-section {
    padding-top: 10px !important; /* body already has header-offset */
  }

  .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;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}