.page-support {
  color: #ffffff; /* Body background is dark (#000000), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}

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

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #000000; /* Ensure dark background for hero */
  color: #ffffff;
  text-align: center;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit hero image height */
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  max-width: 800px;
}

.page-support__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-support__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-support__btn-primary {
  display: inline-block;
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-support__btn-primary:hover {
  background-color: #1a7bb0;
}

.page-support__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0; /* Primary brand color */
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #26A9E0;
  cursor: pointer;
  font-size: 0.9rem;
}

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

.page-support__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.page-support__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-support__highlight {
  color: #26A9E0; /* Highlight color for keywords */
  font-weight: 700;
}

.page-support__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-support__dark-bg {
  background-color: #000000;
  color: #ffffff; /* Light text for dark background */
  padding: 60px 0;
}

.page-support__intro-section .page-support__section-title,
.page-support__common-issues .page-support__section-title,
.page-support__commitment-section .page-support__section-title {
  color: #26A9E0; /* Use brand color for titles on light background */
}

.page-support__channels-section .page-support__section-title,
.page-support__faq-section .page-support__section-title,
.page-support__contact-cta .page-support__section-title {
  color: #ffffff; /* White color for titles on dark background */
}

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

.page-support__channel-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-support__channel-card:hover {
  transform: translateY(-5px);
}

.page-support__channel-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__channel-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-support__channel-description {
  font-size: 0.95rem;
  margin-bottom: 25px;
  color: #555555;
}

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

.page-support__issue-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-support__issue-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-support__issue-list {
  list-style: none;
  padding-left: 0;
}

.page-support__issue-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-support__issue-list li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
}

.page-support__inline-link {
  color: #EA7C07; /* Login color for inline links */
  text-decoration: underline;
}

.page-support__inline-link:hover {
  text-decoration: none;
}

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

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f9f9f9; /* Light background for FAQ cards */
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-item summary {
  list-style: none;
}

.page-support__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #26A9E0;
  border-bottom: 1px solid #eee;
}

.page-support__faq-question:hover {
  background-color: #f0f0f0;
}

.page-support__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #EA7C07;
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.page-support__view-all-faq {
  margin-top: 30px;
  text-align: center;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__commitment-section {
  text-align: center;
  padding: 60px 0;
}

.page-support__commitment-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-support__contact-cta {
  text-align: center;
  padding: 60px 0;
  position: relative;
}

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

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

.page-support__contact-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-support__contact-content .page-support__section-title {
  text-align: left;
  color: #26A9E0; /* Brand color on light background */
}

.page-support__contact-content .page-support__text-block {
  color: #555555;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-support__hero-section,
  .page-support__intro-section,
  .page-support__channels-section,
  .page-support__common-issues,
  .page-support__faq-section,
  .page-support__commitment-section,
  .page-support__contact-cta {
    padding: 40px 0;
  }

  .page-support__hero-content {
    margin-top: 20px;
  }

  .page-support__channel-grid,
  .page-support__issue-grid {
    grid-template-columns: 1fr;
  }

  .page-support__contact-cta .page-support__container {
    flex-direction: column;
  }

  .page-support__contact-content {
    text-align: center;
  }

  .page-support__contact-content .page-support__section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-support__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

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

  .page-support__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-support__text-block,
  .page-support__channel-description,
  .page-support__issue-list li,
  .page-support__faq-answer {
    font-size: 0.9rem;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

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

  /* Mobile responsive containers for images/videos/buttons */
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__intro-section,
  .page-support__channels-section,
  .page-support__common-issues,
  .page-support__faq-section,
  .page-support__commitment-section,
  .page-support__contact-cta,
  .page-support__channel-card,
  .page-support__issue-card,
  .page-support__faq-item,
  .page-support__commitment-links,
  .page-support__contact-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  /* Specific padding for hero/video sections */
  .page-support__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Buttons in mobile */
  .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__commitment-links {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }

  .page-support__channel-card,
  .page-support__issue-card {
    padding: 20px;
  }
}