.page-support {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main for dark background */
  background-color: #08160F; /* Background color */
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding at the bottom */
}

.page-support__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F; /* Match background */
  padding-bottom: 60px; /* Add padding to separate from next section */
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability if needed */
  margin-bottom: 40px; /* Space between image and content block */
}

.page-support__hero-content {
  position: relative; /* Keep relative, no absolute positioning */
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  z-index: 2; /* Ensure content is above image if any layering */
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive H1 font size */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff; /* White text for button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Reverse gradient on hover */
  transform: translateY(-2px);
}

.page-support__channels-section,
.page-support__faq-section,
.page-support__guides-section,
.page-support__commitment-section,
.page-support__final-cta {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-support__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em); /* Responsive H2 font size */
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-support__channel-card,
.page-support__guide-card,
.page-support__commitment-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__channel-card:hover,
.page-support__guide-card:hover,
.page-support__commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__channel-icon,
.page-support__guide-image,
.page-support__commitment-icon {
  width: 100%;
  height: auto;
  max-width: 150px; /* Adjust max-width for icons */
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 5px;
  object-fit: cover;
}
.page-support__commitment-icon {
  max-width: 100px; /* Smaller for commitment icons */
  border-radius: 50%;
}

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

.page-support__channel-text,
.page-support__guide-text,
.page-support__commitment-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__channel-contact {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-top: 15px;
}

.page-support__email-link,
.page-support__phone-link,
.page-support__guide-link {
  color: #2AD16F; /* A lighter green for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__email-link:hover,
.page-support__phone-link:hover,
.page-support__guide-link:hover {
  color: #57E38D; /* Glow color on hover */
  text-decoration: underline;
}

.page-support__channel-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__channel-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-support__faq-list {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #1E3A2A; /* Divider */
  padding-bottom: 15px;
}

.page-support__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
  list-style: none; /* Remove default marker for details summary */
}

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

.page-support__faq-question:hover {
  color: #2AD16F; /* Lighter green on hover */
}

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
  color: #2AD16F; /* Green toggle */
}

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

/* For <details> tag, browser handles open/close, so max-height is not needed for answer div */
.page-support__faq-item[open] .page-support__faq-answer {
  max-height: fit-content;
  padding-bottom: 10px;
}

.page-support__faq-cta {
  text-align: center;
  margin-top: 40px;
}

.page-support__faq-cta-text {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-support__final-cta {
  text-align: center;
  margin-top: 80px;
}

.page-support__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

@media (max-width: 1024px) {
  .page-support__hero-content {
    padding: 30px 15px;
  }
  .page-support__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-support__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.2em);
  }
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__commitment-section,
  .page-support__final-cta {
    margin: 40px auto;
  }
}

@media (max-width: 768px) {
  .page-support__hero-content {
    padding: 25px 15px;
    width: calc(100% - 30px); /* Adjust width for mobile padding */
  }
  .page-support__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-support__tagline {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: clamp(1.4em, 5.5vw, 2em);
  }
  .page-support__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__channel-grid,
  .page-support__guides-grid,
  .page-support__commitment-grid {
    grid-template-columns: 1fr; /* Stack columns on mobile */
    gap: 20px;
  }
  .page-support__channel-card,
  .page-support__guide-card,
  .page-support__commitment-item {
    padding: 20px;
  }
  .page-support__faq-list {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1em;
  }
  .page-support__faq-answer {
    font-size: 0.9em;
  }
  .page-support__cta-button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__cta-button--large {
    font-size: 1.1em;
  }

  /* Images responsive */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Containers for images/videos/buttons */
  .page-support__hero-section,
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__commitment-section,
  .page-support__final-cta,
  .page-support__channel-card,
  .page-support__guide-card,
  .page-support__commitment-item,
  .page-support__faq-list,
  .page-support__faq-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-support__hero-section {
    padding-top: 10px !important;
  }
  .page-support__channel-grid,
  .page-support__guides-grid,
  .page-support__commitment-grid {
    flex-wrap: wrap !important;
    gap: 15px;
  }
  .page-support__faq-cta .page-support__cta-button,
  .page-support__final-cta .page-support__cta-button {
    margin-left: auto;
    margin-right: auto;
    display: block !important; /* Make buttons block level on mobile */
  }
}