.page-support {
  /* Set text color for light body background */
  color: #333333; 
}

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

.page-support__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Main color for hero background */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
  filter: brightness(0.6); /* Use brightness for visual effect, not color change */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero content */
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-support__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.page-support__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-support__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

.page-support__button--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-support__button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register color */
  border: 2px solid #FCBC45;
}

.page-support__button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-support__button--tertiary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-support__button--tertiary:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-support__button--contact {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
}

.page-support__button--contact:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-support__faq-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
}

.page-support__faq-image {
  display: block;
  margin: 50px auto;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.page-support__contact-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-support__contact-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
}

.page-support__contact-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-support__contact-image {
  display: block;
  margin: 50px auto;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Responsible Gambling Section */
.page-support__responsible-gambling-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-support__responsible-image {
  display: block;
  margin: 50px auto;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-support__cta-section {
  padding: 100px 0;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

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

.page-support__cta-section .page-support__section-description {
  color: #f0f0f0;
}

.page-support__cta-image {
  display: block;
  margin: 50px auto;
  max-width: 900px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    padding: 60px 15px;
  }
  .page-support__hero-content {
    min-height: 400px;
    padding: 80px 15px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 0.95em;
  }
  .page-support__faq-grid, .page-support__contact-methods {
    grid-template-columns: 1fr;
  }

  /* Crucial: Ensure content images are responsive and do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Enforce minimum size if not already */
    min-height: 200px;
  }
  /* Specific image classes */
  .page-support__hero-image, 
  .page-support__faq-image, 
  .page-support__contact-image, 
  .page-support__responsible-image, 
  .page-support__cta-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__hero-content {
    padding: 60px 15px;
    min-height: 300px;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-item, .page-support__contact-card {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.3em;
  }
  .page-support__contact-title {
    font-size: 1.5em;
  }
}