.page-support {
  color: #333333; /* Dark text on light background */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0; /* Light background for hero section */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-support__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  margin-top: -80px; /* Overlap with image for dynamic look */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  max-width: 800px;
  transform: translateY(-20px);
}

.page-support__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}

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

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

.page-support__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-support__btn--register {
  background-color: #000000;
  color: #FFFFFF;
}

.page-support__btn--register:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-support__btn--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-support__btn--login:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

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

.page-support__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

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

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

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

.page-support__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-support__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__btn--secondary {
  background-color: #000000;
  color: #FFFFFF;
  margin: 20px auto 0;
  display: block;
  width: fit-content;
}

.page-support__btn--secondary:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

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

.page-support__contact-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-support__contact-content {
  flex: 1;
  text-align: left;
}

.page-support__contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-support__contact-item {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-support__contact-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FCBC45;
}

.page-support__btn--primary {
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.1em;
  padding: 15px 35px;
}

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

.page-support__contact-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensure image isn't too large */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

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

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

.page-support__guide-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-support__guide-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__guide-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-support__guide-title a:hover {
  color: #FCBC45;
}

.page-support__guide-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support__guide-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-support__guide-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

.page-support__responsible-gambling-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.page-support__responsible-gambling-section .page-support__section-title {
  color: #FFFFFF;
}

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

.page-support__btn--tertiary {
  background-color: #FFFFFF;
  color: #000000;
  font-size: 1.1em;
  padding: 15px 35px;
}

.page-support__btn--tertiary:hover {
  background-color: #e0e0e0;
  transform: translateY(-3px);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.4em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__contact-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-support__contact-content {
    text-align: center;
  }
  .page-support__contact-list {
    margin: 30px auto;
    max-width: 400px;
  }
  .page-support__contact-image-wrapper {
    order: -1; /* Image above content on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-support__hero-content {
    margin-top: -40px;
    padding: 20px;
    transform: translateY(-10px);
  }
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
    max-width: 300px;
  }
  .page-support__container {
    padding: 30px 15px;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__faq-grid, .page-support__guides-grid {
    grid-template-columns: 1fr;
  }
  .page-support__faq-item, .page-support__guide-card {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-item {
    font-size: 1em;
  }
  /* Ensure images do not overflow on mobile */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__guide-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__btn {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__section-intro {
    font-size: 0.9em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__contact-item {
    font-size: 0.9em;
  }
}