.page-support {
  color: #ffffff; /* Body background is dark (#0a0a0a), so text should be light */
}

.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 */
  background: linear-gradient(135deg, #26A9E0 0%, #1A7BB0 100%); /* Use brand color for hero background */
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Adjust as needed for hero image container */
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

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

.page-support__hero-content {
  max-width: 900px;
  text-align: center;
  color: #ffffff;
  z-index: 1; /* Ensure content is above any background effects */
}

.page-support__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__subtitle {
  font-size: clamp(1em, 1.8vw, 1.3em);
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%; /* Ensure button doesn't overflow */
}

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

.page-support__btn-primary:hover {
  background: #D46A00;
  border-color: #D46A00;
  transform: translateY(-2px);
}

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

.page-support__btn-secondary:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-support__section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.page-support__overview-section {
  background-color: #0a0a0a;
}

.page-support__contact-channels {
  background-color: #1a1a1a;
}

.page-support__faq-section {
  background-color: #0a0a0a;
}

.page-support__self-help-guide {
  background-color: #1a1a1a;
}

.page-support__responsible-gaming {
  background-color: #26A9E0; /* Brand primary color for this section */
  color: #ffffff; /* Ensure light text on brand color background */
}

.page-support__security-privacy {
  background-color: #0a0a0a;
}

.page-support__advice-section {
  background-color: #1a1a1a;
}

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

.page-support__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: #26A9E0; /* Use brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-support__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark backgrounds */
}

.page-support__text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-support__text-link:hover {
  color: #1A7BB0;
  text-decoration: underline;
}

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

.page-support__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__image--centered {
  margin-left: auto;
  margin-right: auto;
}

.page-support__image--margin-top {
  margin-top: 40px;
}

/* Contact Channels Grid */
.page-support__channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-support__card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

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

.page-support__card-text {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__contact-info {
  font-weight: 600;
  color: #EA7C07;
}

.page-support__btn-text-link {
  color: #EA7C07;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-support__btn-text-link:hover {
  color: #D46A00;
  text-decoration: underline;
}

/* FAQ Section */
.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.page-support__faq-item[open] {
  background: rgba(255, 255, 255, 0.15);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s ease;
  list-style: none; /* Remove default marker for details summary */
}

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

.page-support__faq-question:hover {
  color: #26A9E0;
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to become cross */
}

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

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

/* List styles */
.page-support__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-support__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #f0f0f0;
}

.page-support__list-item::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-support__list--responsible-gaming .page-support__list-item::before {
  content: '★'; /* Different icon for responsible gaming list */
  color: #EA7C07;
}

/* Dark background sections */
.page-support__dark-bg {
  color: #ffffff; /* Ensure light text on dark backgrounds */
}

.page-support__dark-bg .page-support__section-title {
  color: #ffffff; /* White titles on dark background */
}

.page-support__dark-bg .page-support__text-block {
  color: #f0f0f0;
}

.page-support__dark-bg .page-support__text-link {
  color: #EA7C07;
}

.page-support__dark-bg .page-support__text-link:hover {
  color: #D46A00;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-section {
    padding: 40px 20px;
  }

  .page-support__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-support__subtitle {
    font-size: clamp(0.9em, 2vw, 1.2em);
  }

  .page-support__section {
    padding: 60px 0;
  }

  .page-support__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }

  .page-support__text-block {
    font-size: 1em;
  }

  .page-support__card {
    padding: 25px;
  }

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

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

  .page-support__faq-answer {
    font-size: 0.95em;
  }

  .page-support__list-item {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-support__hero-image-wrapper {
    margin-bottom: 15px;
  }

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

  .page-support__subtitle {
    font-size: clamp(0.85em, 2.5vw, 1em);
    margin-bottom: 25px;
  }

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

  .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;
    padding: 12px 20px !important;
    font-size: 0.95em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  .page-support__section-title {
    font-size: clamp(1.4em, 5vw, 2em);
    margin-bottom: 30px;
  }

  .page-support__text-block {
    font-size: 0.95em;
  }

  .page-support__image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support__channels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__card {
    padding: 20px;
  }

  .page-support__card-title {
    font-size: 1.2em;
  }

  .page-support__card-text {
    font-size: 0.9em;
  }

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

  .page-support__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  .page-support__list-item {
    font-size: 0.9em;
    padding-left: 25px;
  }
  .page-support__list-item::before {
    left: 0;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 20px 10px;
    padding-top: 10px !important;
  }

  .page-support__main-title {
    font-size: clamp(1.6em, 7vw, 2em);
  }

  .page-support__subtitle {
    font-size: clamp(0.8em, 3vw, 0.9em);
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    padding: 10px 15px !important;
    font-size: 0.9em !important;
  }

  .page-support__section {
    padding: 30px 0;
  }

  .page-support__section-title {
    font-size: clamp(1.2em, 6vw, 1.6em);
    margin-bottom: 25px;
  }

  .page-support__text-block {
    font-size: 0.85em;
  }

  .page-support__card {
    padding: 15px;
  }

  .page-support__card-title {
    font-size: 1.1em;
  }

  .page-support__card-text {
    font-size: 0.85em;
  }

  .page-support__faq-question {
    font-size: 0.9em;
    padding: 12px 15px;
  }

  .page-support__faq-answer {
    padding: 0 15px 12px;
    font-size: 0.85em;
  }

  .page-support__list-item {
    font-size: 0.85em;
    padding-left: 20px;
  }
}

/* Ensure images don't have filters */
.page-support img {
  filter: none; /* Explicitly ensure no CSS filters are applied */
}

/* Ensure content area images are not small */
.page-support__content-area img,
.page-support__section img {
  min-width: 200px;
  min-height: 200px;
}