.page-support__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #26A9E0;
  color: #ffffff;
  overflow: hidden;
}

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-support__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

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

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15; /* Subtle overlay */
  filter: grayscale(100%); /* Make it black and white to blend with blue */
  transform: scale(1.1);
}

.page-support__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: #26A9E0;
}

.page-support__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #333333;
}

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

.page-support__about-section {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
}

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

.page-support__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__feature-icon {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-support__feature-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-support__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-support__faq-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 60px 0;
}

.page-support__faq-section .page-support__section-title {
  color: #ffffff;
}

.page-support__faq-section .page-support__section-intro {
  color: #f0f0f0;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

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

.page-support__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

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

.page-support__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

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

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

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

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

.page-support__faq-answer .page-support__btn-text {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__faq-answer .page-support__btn-text:hover {
  color: #EA7C07;
}

.page-support__contact-methods-section {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
}

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

.page-support__contact-card {
  text-align: center;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-support__contact-icon {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-support__contact-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-support__contact-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
}

.page-support__responsible-gaming-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 60px 0;
}

.page-support__responsible-gaming-section .page-support__section-title {
  color: #ffffff;
}

.page-support__responsible-gaming-section .page-support__section-intro {
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-support__responsible-gaming-section p {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

.page-support__responsible-gaming-section .page-support__btn-secondary {
  display: block;
  margin: 40px auto 0;
  max-width: 350px;
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #ffffff;
}

.page-support__responsible-gaming-section .page-support__btn-secondary:hover {
  background-color: #f0f0f0;
}

.page-support__guides-section {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
}

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

.page-support__guide-card {
  text-align: center;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-support__guide-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-support__guide-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-support__guide-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  text-decoration: underline;
}

.page-support__guide-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
}

.page-support__guide-card .page-support__btn-text {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__guide-card .page-support__btn-text:hover {
  color: #EA7C07;
}

.page-support__cta-section-bottom {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-support__cta-section-bottom .page-support__section-title {
  color: #ffffff;
}

.page-support__cta-section-bottom .page-support__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

/* Common Button Styles */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn-primary, .page-support__btn-secondary {
    width: 100%;
    padding: 12px 20px;
  }

  .page-support__container {
    padding: 30px 15px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__features-grid, .page-support__contact-grid, .page-support__guides-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-support__feature-item, .page-support__contact-card, .page-support__guide-card {
    padding: 25px;
  }
  .page-support__feature-title, .page-support__contact-title, .page-support__guide-title {
    font-size: 1.4em;
  }
  .page-support__faq-item summary {
    padding: 18px 20px;
    font-size: 1.05em;
  }
  .page-support__faq-answer {
    padding: 0 20px 18px;
  }
  .page-support__responsible-gaming-section .page-support__btn-secondary {
    max-width: 90%;
  }

  /* Mobile image and video specific overrides */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support__section, .page-support__card, .page-support__container, .page-support__hero-section,
  .page-support__about-section, .page-support__faq-section, .page-support__contact-methods-section,
  .page-support__responsible-gaming-section, .page-support__guides-section, .page-support__cta-section-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

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

  .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__cta-buttons, .page-support__button-group, .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-support__feature-icon, .page-support__contact-icon, .page-support__guide-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  /* Ensure content area images are not too small */
  .page-support__feature-icon,
  .page-support__contact-icon,
  .page-support__guide-image {
    min-width: 200px;
    min-height: 150px; /* Adjust if necessary to fit aspect ratio, but maintain min 200px width */
  }
}

/* Ensure proper contrast for dark backgrounds */
.page-support__dark-section {
  color: #ffffff; /* Explicitly set light text for dark sections */
}

.page-support__dark-section .page-support__section-title,
.page-support__dark-section .page-support__feature-title,
.page-support__dark-section .page-support__contact-title,
.page-support__dark-section .page-support__guide-title {
  color: #ffffff;
}

/* Ensure proper contrast for light backgrounds */
.page-support__light-bg {
  color: #333333; /* Explicitly set dark text for light sections */
}

.page-support__light-bg .page-support__section-title,
.page-support__light-bg .page-support__feature-title,
.page-support__light-bg .page-support__contact-title,
.page-support__light-bg .page-support__guide-title {
  color: #26A9E0;
}

/* Specific button color for Login/Register (primary action) */
.page-support__btn-primary {
  background-color: #EA7C07;
  border-color: #EA7C07;
  color: #ffffff;
}

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

/* Override for text buttons in dark sections */
.page-support__faq-answer .page-support__btn-text {
  color: #ffffff;
}

.page-support__faq-answer .page-support__btn-text:hover {
  color: #EA7C07;
}

/* Global image rules to prevent small icons and ensure minimum size */
.page-support img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensures images fill their space without distortion */
}

@media (max-width: 768px) {
  /* Adjust min-height for mobile if needed, but maintain width >= 200px */
  .page-support img {
    min- /* Example: allowing slightly shorter images on mobile if width is still >= 200px */
  }
}