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

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

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

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

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

.page-support__text-block {
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom */
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px; /* Space between image and content */
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-support__hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
  background-color: rgba(8, 22, 15, 0.7); /* Background with transparency for readability */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-top: -80px; /* Overlap with image slightly for visual appeal */
}

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

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

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

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-width: 200px; /* Ensure button minimum width */
  text-align: center;
  box-sizing: border-box;
}

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

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

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

.page-support__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* 2E7A4E with transparency */
  transform: translateY(-2px);
}

/* Introduction Section */
.page-support__introduction-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #A7D9B8; /* Text Secondary */
}

/* Why Choose Section */
.page-support__why-choose-section {
  padding: 60px 20px;
  background-color: #11271B; /* Card BG */
}

.page-support__why-choose-section .page-support__section-title {
  color: #F2FFF6; /* Text Main */
}

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

.page-support__advantage-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* Channels Section */
.page-support__channels-section {
  padding: 60px 20px;
  background-color: #11271B; /* Card BG */
}

.page-support__channels-section .page-support__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-support__channels-section .page-support__text-secondary {
  text-align: center;
  margin-bottom: 40px;
}

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

.page-support__channel-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__channel-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #A7D9B8; /* Text Secondary */
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.page-support__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.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 plus to cross */
}

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

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

/* Policies Section */
.page-support__policies-section {
  padding: 60px 20px;
  background-color: #11271B; /* Card BG */
}

.page-support__policies-section .page-support__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-support__policies-section .page-support__text-block {
  color: #A7D9B8; /* Text Secondary */
}

/* Commitment Section */
.page-support__commitment-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #A7D9B8; /* Text Secondary */
}

/* Final CTA Section */
.page-support__cta-final-section {
  padding: 60px 20px;
  background-color: #11271B; /* Card BG */
  text-align: center;
}

.page-support__cta-final-section .page-support__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-support__cta-final-section .page-support__text-secondary {
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__hero-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-support__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-support__description {
    font-size: 1em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    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;
    min-width: unset;
  }

  .page-support__hero-image-wrapper {
    max-height: 50vh;
  }
  
  /* Images and Videos Responsive */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__channel-icon,
  .page-support__advantage-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__introduction-section,
  .page-support__why-choose-section,
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__policies-section,
  .page-support__commitment-section,
  .page-support__cta-final-section,
  .page-support__hero-content,
  .page-support__channels-grid,
  .page-support__channel-card,
  .page-support__faq-list,
  .page-support__faq-item,
  .page-support__advantages-grid,
  .page-support__advantage-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Video specific mobile styles */
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-support__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__hero-content {
    margin-top: -40px;
  }
  .page-support__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 0 20px 15px;
  }
}

/* Ensure color contrast for dark background areas */
.page-support__dark-section {
  background-color: #11271B; /* Card BG for dark sections */
  color: #F2FFF6; /* Text Main for dark sections */
}

/* Ensure color contrast for light background areas */
.page-support__light-bg {
  background-color: #08160F; /* Background for light sections */
  color: #A7D9B8; /* Text Secondary for light sections */
}

.page-support__text-main {
  color: #F2FFF6;
}

.page-support__text-secondary {
  color: #A7D9B8;
}

/* Button colors are already defined with sufficient contrast */
/* Card background and text */
.page-support__card {
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
}