.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: transparent; /* Rely on body background */
}

.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, body handles header offset */
  text-align: center;
  background-color: #000000; /* Ensure dark background for hero */
}

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

.page-support__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

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

.page-support__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

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

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

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

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

.page-support__btn-tertiary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-support__btn-tertiary:hover {
  background-color: #c96706;
  border-color: #c96706;
}

.page-support__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-support__text-link:hover {
  color: #1a8cc4;
}

.page-support__introduction-section,
.page-support__faq-section,
.page-support__commitment-section,
.page-support__cta-bottom {
  padding: 80px 20px;
  background-color: #ffffff; /* Light background for these sections */
  color: #333333; /* Dark text on light background */
}

.page-support__channels-section,
.page-support__common-issues-section,
.page-support__tips-section {
  padding: 80px 20px;
  background-color: #000000; /* Dark background for these sections */
  color: #ffffff; /* Light text on dark background */
}

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

.page-support__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: inherit;
}

.page-support__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
  color: inherit;
}

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

.page-support__channel-card,
.page-support__commitment-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible on dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-support__channel-card .page-support__btn-tertiary {
  margin-top: 20px;
}

.page-support__channel-image,
.page-support__commitment-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__card-title,
.page-support__item-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: inherit;
}

.page-support__card-description,
.page-support__item-description {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-support__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-support__faq-item[open] {
  background-color: #ffffff;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  background-color: #eaf6fc; /* Light blue for summary */
  color: #26A9E0;
  list-style: none; /* Hide default marker */
}

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

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

.page-support__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #e0e0e0;
}

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

.page-support__issue-category {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  color: #ffffff;
}

.page-support__category-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for category titles */
}

.page-support__issue-list {
  list-style: disc;
  margin-left: 25px;
  font-size: 1.05em;
}

.page-support__issue-list li {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-support__issue-list li strong {
  color: #ffffff;
}

.page-support__tips-list {
  list-style: decimal;
  margin-left: 25px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-support__tips-list li {
  margin-bottom: 10px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

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

  .page-support__hero-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__hero-section,
  .page-support__introduction-section,
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__common-issues-section,
  .page-support__commitment-section,
  .page-support__tips-section,
  .page-support__cta-bottom {
    padding: 40px 15px;
  }

  .page-support__hero-image,
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__channel-image,
  .page-support__commitment-image {
    height: auto;
  }

  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-support__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-support__description,
  .page-support__text-block,
  .page-support__card-description,
  .page-support__item-description,
  .page-support__issue-list li,
  .page-support__tips-list li {
    font-size: 1em;
    text-align: left;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

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

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

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

  .page-support__category-title {
    font-size: 1.5em;
  }

  /* Ensure all containers with images/videos/buttons are responsive */
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__cta-buttons,
  .page-support__channel-card,
  .page-support__commitment-item,
  .page-support__issue-category,
  .page-support__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-support__hero-image {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .page-support__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}