.page-support {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  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: linear-gradient(135deg, #26A9E0, #1a7bbd);
  overflow: hidden;
}

.page-support__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

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

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

.page-support__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-support__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-support__overview-section .page-support__section-title,
.page-support__problem-solving-section .page-support__section-title,
.page-support__commitment-section .page-support__section-title {
  color: #333333; /* Dark text for light background */
}

.page-support__text-block {
  font-size: 1em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Default for dark bg */
}

.page-support__overview-section .page-support__text-block,
.page-support__problem-solving-section .page-support__text-block,
.page-support__commitment-section .page-support__text-block {
  color: #333333; /* Dark text for light background */
}

.page-support__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-support__channels-grid,
.page-support__problem-grid,
.page-support__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.page-support__channel-card,
.page-support__problem-card,
.page-support__tip-item {
  background: #FFFFFF;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.page-support__channel-card .page-support__card-title,
.page-support__problem-card .page-support__card-title,
.page-support__tip-item .page-support__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-support__channel-card .page-support__card-description,
.page-support__problem-card .page-support__card-description,
.page-support__tip-item .page-support__card-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555555;
  flex-grow: 1;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  width: auto; /* Default for desktop */
  margin: 5px;
}

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

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

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

.page-support__btn-secondary:hover {
  background: #e0f0f7;
  color: #1a7bbd;
}

.page-support__cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-support__cta-buttons--faq {
  margin-top: 50px;
}

.page-support__cta-buttons--bottom {
  margin-top: 50px;
}

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

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

.page-support__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1em;
  cursor: pointer;
  outline: none;
  list-style: none;
  color: #26A9E0;
}

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-support__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1;
  color: #333333;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  content: '−';
}

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

/* Background color specific text colors */
.page-support__dark-bg .page-support__section-title,
.page-support__dark-bg .page-support__text-block {
  color: #FFFFFF;
}

.page-support__light-bg .page-support__section-title,
.page-support__light-bg .page-support__text-block {
  color: #333333;
}

.page-support__light-bg {
  background: #f8f8f8;
}

.page-support__dark-bg {
  background: #1a1a1a; /* Assuming var(--black-color) is dark */
}

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

  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-support__main-title {
    font-size: 2.2em; /* Adjusted for mobile */
  }

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

  .page-support__section {
    padding: 40px 15px;
  }

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

  .page-support__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-support video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__hero-image-container,
  .page-support__overview-section,
  .page-support__channels-section,
  .page-support__problem-solving-section,
  .page-support__faq-section,
  .page-support__commitment-section,
  .page-support__tips-section,
  .page-support__channels-grid,
  .page-support__problem-grid,
  .page-support__tips-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-support__channel-card,
  .page-support__problem-card,
  .page-support__tip-item {
    padding: 20px;
  }

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

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 12px 15px;
    box-sizing: border-box !important;
  }

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

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