.page-support {
  color: #333333; /* Dark text for default light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD70033, #8B000033); /* Subtle gradient overlay */
}

.page-support__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-support__hero-title {
  font-size: 3.2em;
  color: #8B0000; /* Deep red for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  line-height: 1.2;
}

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

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

.page-support__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-support__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #8B0000;
  border: 2px solid #FFD700;
}

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

.page-support__button--secondary {
  background-color: #8B0000; /* Deep red secondary button */
  color: #FFD700;
  border: 2px solid #8B0000;
}

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

.page-support__button--outline {
  background-color: transparent;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-support__button--outline:hover {
  background-color: #8B0000;
  color: #FFD700;
  transform: translateY(-2px);
}

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

.page-support__faq-section, .page-support__guides-section, .page-support__contact-section, .page-support__responsible-gaming-section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-support__guides-section {
  background-color: #f5f5f5;
}

.page-support__contact-section {
  background-color: #fcfcfc;
}

.page-support__section-title {
  font-size: 2.8em;
  color: #8B0000;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px 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.3em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-support__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-support__guide-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

.page-support__contact-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-support__contact-heading {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-support__faq-image, .page-support__guides-image, .page-support__contact-image {
  width: 400px;
  height: 300px;
  object-fit: contain;
  margin: 40px auto 0;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

  .page-support__section-title {
    font-size: 2.4em;
  }

  .page-support__faq-image, .page-support__guides-image, .page-support__contact-image {
    width: 350px;
    height: 263px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
  }

  .page-support__hero-title {
    font-size: 2.2em;
  }

  .page-support__hero-description {
    font-size: 1.1em;
  }

  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__section-intro {
    font-size: 1em;
  }

  .page-support__faq-list, .page-support__guides-grid, .page-support__contact-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__container {
    padding: 0 15px;
  }

  .page-support__faq-image, .page-support__guides-image, .page-support__contact-image {
    max-width: 100%;
    height: auto;
    margin: 30px auto 0;
  }

  /* Ensure all images within .page-support do not cause horizontal scroll */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }

  .page-support__section-title {
    font-size: 1.8em;
  }
}