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

/* Ensure all images are responsive and don't use filters */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none; /* Prohibit any CSS filters */
}

/* Ensure all videos are responsive */
.page-support video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* General container for content sections */
.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, larger bottom padding */
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-support__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-support__main-title {
  color: #F2C14E; /* Gold color for main title */
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  max-width: 100%;
}

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

.page-support__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure button doesn't overflow */
}

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

.page-support__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4); /* Glow color */
}

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

.page-support__btn-secondary:hover {
  background-color: #2E7A4E; /* Border color */
  color: #F2FFF6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.2); /* Glow color */
}

/* Section titles */
.page-support__section-title {
  color: #F2C14E; /* Gold color */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

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

/* Dark background sections for contrast */
.page-support__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

.page-support__intro-section .page-support__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Channels Section */
.page-support__channels-section {
  padding: 60px 0;
}

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

.page-support__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensure cards are same height in a row */
  box-sizing: border-box;
  color: #F2FFF6; /* Main text color for cards */
}

.page-support__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistent card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__card-title {
  color: #F2C14E; /* Gold color */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-support__card-description {
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 25px;
  flex-grow: 1; /* Allow description to take available space */
}

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
}

.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Main text color */
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2C14E; /* Gold color for question */
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
}

.page-support__faq-answer {
  padding: 0 25px;
  color: #A7D9B8; /* Secondary text color */
  max-height: 0; /* Hidden by default */
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-support__faq-item[open] .page-support__faq-answer {
  max-height: 500px; /* Sufficiently large for content */
  padding: 20px 25px 25px;
}

.page-support__faq-item[open] .page-support__faq-question {
  border-bottom: none;
}

.page-support__faq-item summary {
  list-style: none; /* Remove default marker */
}
.page-support__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

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

/* Guides Section */
.page-support__guides-section {
  padding: 60px 0;
}

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

/* Policies Section */
.page-support__policies-section {
  padding: 60px 0;
}

.page-support__policy-list {
  margin-top: 40px;
  text-align: center;
}

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

.page-support__policy-items li {
  margin-bottom: 10px;
}

.page-support__policy-items li a {
  color: #F2C14E; /* Gold color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__policy-items li a:hover {
  color: #57E38D; /* Glow color */
}

/* Contact Direct Section */
.page-support__contact-direct-section {
  padding: 60px 0;
}

.page-support__contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.page-support__contact-image {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-support__contact-form {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  flex-grow: 1;
  max-width: 600px;
  box-sizing: border-box;
}

.page-support__form-title {
  color: #F2C14E; /* Gold color */
  font-size: 1.8em;
  margin-bottom: 25px;
  text-align: center;
}

.page-support__form-group {
  margin-bottom: 20px;
}

.page-support__form-label {
  display: block;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 8px;
  font-weight: bold;
}

.page-support__form-input,
.page-support__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 5px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Main text color */
  font-size: 1em;
  box-sizing: border-box;
}

.page-support__form-input::placeholder,
.page-support__form-textarea::placeholder {
  color: #A7D9B8; /* Lighter placeholder */
}

.page-support__form-input:focus,
.page-support__form-textarea:focus {
  outline: none;
  border-color: #57E38D; /* Glow color */
  box-shadow: 0 0 0 3px rgba(87, 227, 141, 0.3); /* Glow color with transparency */
}

.page-support__form-textarea {
  resize: vertical;
}

.page-support__form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-support__form-submit-btn:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4);
}

/* Why Choose Us Section */
.page-support__why-choose-us {
  padding: 60px 0;
}

.page-support__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__why-choose-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Main text color */
}

.page-support__why-choose-title {
  color: #F2C14E; /* Gold color */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-support__why-choose-description {
  color: #A7D9B8; /* Secondary text color */
}

/* Final CTA Section */
.page-support__cta-final {
  padding: 60px 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__container {
    padding: 0 15px; /* Adjust padding for mobile */
  }

  .page-support__main-title {
    font-size: 2.2em; /* Smaller H1 on mobile */
  }

  .page-support__section-title {
    font-size: 2em; /* Smaller section titles on mobile */
    padding-top: 20px;
  }

  .page-support__hero-section {
    padding: 10px 0 40px; /* Adjust hero padding */
  }

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

  .page-support__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
  }

  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-support__channel-grid,
  .page-support__guide-grid,
  .page-support__why-choose-grid {
    grid-template-columns: 1fr; /* Single column for grids on mobile */
    gap: 20px;
  }

  .page-support__card {
    padding: 20px;
  }

  .page-support__card-image {
    height: 180px; /* Adjust image height for mobile cards */
  }

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

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

  .page-support__contact-form-wrapper {
    flex-direction: column; /* Stack image and form on mobile */
  }

  .page-support__contact-image {
    width: 100%;
    max-width: 400px; /* Limit image width */
  }

  .page-support__contact-form {
    width: 100%;
  }

  /* Mobile image/video specific rules */
  .page-support img,
  .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__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; /* body already handles --header-offset */
  }
}

/* Ensure no text color is too close to background */
/* Body background is #08160F (dark), so text should be light */
.page-support p,
.page-support li,
.page-support__description,
.page-support__card-description,
.page-support__form-label,
.page-support__why-choose-description {
  color: #A7D9B8; /* Secondary text color, light enough */
}

.page-support h1, .page-support h2, .page-support h3, .page-support h4, .page-support h5, .page-support h6,
.page-support__card-title, .page-support__form-title, .page-support__why-choose-title {
  color: #F2C14E; /* Gold, distinct from background */
}

.page-support a {
  color: #F2C14E; /* Gold, distinct for links */
}

.page-support__btn-primary {
  color: #F2FFF6; /* White-ish on green gradient */
}

.page-support__btn-secondary {
  color: #F2FFF6; /* White-ish on transparent/green border */
}

/* Contrast fix for input/textarea text */
.page-support__form-input,
.page-support__form-textarea {
  color: #F2FFF6; /* Light text on dark background */
}
.page-support__form-input::placeholder,
.page-support__form-textarea::placeholder {
  color: #A7D9B8; /* Lighter placeholder */
}