.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: rgba(38, 169, 224, 0.1); /* Slightly translucent brand color */
  overflow: hidden; /* Ensure no overflow */
}

.page-support__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px; /* Add padding for inner content */
  box-sizing: border-box;
}

.page-support__hero-image {
  width: 100%;
  max-width: 1000px; /* Adjust max-width for image in hero */
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
}

.page-support__hero-content {
  z-index: 1; /* Ensure content is above any potential background layers */
}

.page-support__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styles */
.page-support__section-title {
  font-size: 2.2em;
  color: #26A9E0; /* Brand color for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Button Styles */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-support__btn-primary {
  background-color: #26A9E0; /* Brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-support__btn-primary:hover {
  background-color: #1a8cc2; /* Darker shade on hover */
  border-color: #1a8cc2;
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #26A9E0; /* Brand color */
  border: 2px solid #26A9E0;
}

.page-support__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Channels Section */
.page-support__channels-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-support__channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 15px; /* Add padding for inner content */
}

.page-support__channel-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 450px; /* Ensure cards have similar height */
}

.page-support__channel-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__card-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1; /* Allow text to grow and push button down */
}

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

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px; /* Add padding for inner content */
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  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-qtext {
  flex-grow: 1;
  color: #26A9E0; /* Brand color for FAQ questions */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-support__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-support__faq-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__faq-link:hover {
  color: #1a8cc2;
}

/* Process Section */
.page-support__process-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-support__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  padding: 0 15px; /* Add padding for inner content */
}

.page-support__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-support__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__step-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-support__cta-box {
  text-align: center;
  background-color: rgba(38, 169, 224, 0.2);
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 0 15px; /* Add padding for inner content */
}

.page-support__cta-text {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: bold;
}

/* Commitment Section */
.page-support__commitment-section {
  padding: 60px 0;
}

.page-support__commitment-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 0 auto 30px auto;
  display: block; /* Center image */
  object-fit: cover;
}

.page-support__commitment-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px; /* Add padding for inner content */
  text-align: center;
}

.page-support__commitment-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-support__commitment-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left; /* Align list items left */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__commitment-list li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 1em;
  color: #ffffff;
  position: relative;
  padding-left: 40px; /* Space for custom bullet */
}

.page-support__commitment-list li:last-child {
  margin-bottom: 0;
}

.page-support__commitment-list li strong {
  color: #26A9E0;
}

.page-support__commitment-list li::before {
  content: '✓'; /* Custom bullet point */
  color: #26A9E0;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 2.5em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, this is just for visual spacing */
  }

  .page-support__main-title {
    font-size: 1.8em; /* Adjusted for smaller screens */
    line-height: 1.3;
  }

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

  .page-support__section-title {
    font-size: 1.6em;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  /* All containing elements for images/videos/buttons */
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__channel-grid,
  .page-support__process-steps,
  .page-support__faq-list,
  .page-support__cta-box,
  .page-support__commitment-section,
  .page-support__commitment-content,
  .page-support__commitment-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-support__channel-grid,
  .page-support__process-steps {
    grid-template-columns: 1fr; /* Stack cards vertically on mobile */
  }

  .page-support__channel-card {
    min-height: auto; /* Reset min-height for mobile */
  }

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

  .page-support__cta-text {
    font-size: 1.1em;
  }

  .page-support__commitment-list li {
    padding-left: 30px; /* Adjust padding for custom bullet */
  }

  .page-support__commitment-list li::before {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.6em;
  }
  .page-support__section-title {
    font-size: 1.4em;
  }
  .page-support__hero-description,
  .page-support__section-description,
  .page-support__card-text,
  .page-support__step-text,
  .page-support__commitment-text,
  .page-support__commitment-list li {
    font-size: 0.95em;
  }
  .page-support__faq-question {
    font-size: 1em;
  }
}

/* Specific color contrast rules (as per prompt) */
/* The main content area uses light text on a 'transparent' background, which will inherit body's dark background. */
/* Cards and sections have their own rgba backgrounds to provide slight visual separation while maintaining contrast. */
.page-support__dark-bg {
  color: #ffffff; /* Deep contrast with dark backgrounds */
  background: #26A9E0; /* Using brand color for dark background */
}

/* Ensuring buttons contrast */
.page-support__btn-primary {
  background: #26A9E0; /* Brand color */
  color: #ffffff; /* White text for contrast */
}

.page-support__btn-secondary {
  background: transparent;
  color: #26A9E0; /* Brand color text */
  border: 2px solid #26A9E0;
}
/* For button hover states, ensure contrast is maintained */
.page-support__btn-primary:hover {
  background: #1a8cc2; /* Slightly darker brand color */
  border-color: #1a8cc2;
  color: #ffffff;
}
.page-support__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

/* FAQ question text is brand color on rgba background, which is good contrast */
.page-support__faq-qtext {
  color: #26A9E0;
}
.page-support__faq-toggle {
  color: #26A9E0;
}

/* Links in FAQ answer */
.page-support__faq-link {
  color: #26A9E0;
}

/* Commitment list strong text */
.page-support__commitment-list li strong {
  color: #26A9E0;
}
.page-support__commitment-list li::before {
  color: #26A9E0;
}