.page-support {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is dark, so text should be light */
  line-height: 1.6;
  background-color: transparent; /* Use transparent as body handles the main background */
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding for content below image */
  background-color: #26A9E0; /* Brand primary color for hero background */
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and text */
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2; /* Ensure content is above image if any slight overlap */
  max-width: 900px;
  padding: 0 20px;
}

.page-support__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-support__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-support__btn-primary,
.page-support__cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login/CTA 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;
}

.page-support__btn-primary:hover,
.page-support__cta-button:hover {
  background-color: #d16b06;
}

.page-support__introduction-section,
.page-support__common-issues-section,
.page-support__commitment-section,
.page-support__cta-section {
  padding: 60px 20px;
}

.page-support__channels-section,
.page-support__tips-section,
.page-support__faq-section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Darker background for contrast */
  color: #ffffff;
}

.page-support__light-bg {
  background-color: #0a0a0a; /* Body background is dark, use a slightly different dark tone for sections */
  color: #ffffff;
}

.page-support__dark-section {
  background-color: #1a1a1a; /* Darker background for sections */
  color: #ffffff;
}

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

.page-support__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #26A9E0; /* Brand primary color for titles */
}

.page-support__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-support__highlight {
  color: #26A9E0;
  font-weight: 600;
}

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

.page-support__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-support__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards on dark background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-support__card-text {
  font-size: 1rem;
  color: #e0e0e0;
}

.page-support__full-width-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__issue-category {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for categories */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid #26A9E0;
}

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

.page-support__list {
  list-style-type: disc;
  padding-left: 25px;
  font-size: 1.05rem;
  color: #e0e0e0;
}

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

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

.page-support__commitment-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-support__commitment-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.page-support__commitment-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #EA7C07; /* Login/CTA color for checkmark */
  font-weight: 700;
}

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

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #26A9E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__faq-item[open] .page-support__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #EA7C07;
  transition: transform 0.3s ease;
}

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

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

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

.page-support a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support a:hover {
  color: #EA7C07;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 10px 15px 40px;
  }

  .page-support__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }

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

  .page-support__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-support__subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 20px;
  }

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

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

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

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

  .page-support__text-block,
  .page-support__list li,
  .page-support__card-text,
  .page-support__faq-answer p {
    font-size: 1rem;
  }

  .page-support__grid-3-col,
  .page-support__grid-2-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__card {
    padding: 25px;
  }

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

  .page-support__full-width-card .page-support__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__card-title {
    font-size: 1.3rem;
  }

  .page-support__issue-category {
    padding: 20px;
    margin-bottom: 20px;
  }

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

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

  .page-support__faq-toggle {
    font-size: 1.3rem;
  }

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

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

  /* Ensure all video elements are responsive */
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video and button containers */
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper,
  .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;
    overflow: hidden !important;
  }
  .page-support__video-section {
    padding-top: 10px !important;
  }
}