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

.page-support__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* Light text for dark background */
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

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

.page-support__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

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

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

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

.page-support__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FCBC45;
}

.page-support__button--primary:hover {
  background-color: #e0a73b;
  border-color: #e0a73b;
}

.page-support__button--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FFFFFF;
}

.page-support__button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

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

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

.page-support__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-support__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.page-support__button-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

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

.page-support__contact-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__contact-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__contact-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

.page-support__button--tertiary:hover {
  background-color: #333333;
  border-color: #333333;
}

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

.page-support__responsible-gaming-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-support__responsible-gaming-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__responsible-gaming-text {
  flex: 2;
  min-width: 300px;
  line-height: 1.7;
  font-size: 1.1em;
}

.page-support__responsible-gaming-text p {
  margin-bottom: 20px;
  color: #444444;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    padding-bottom: 40px;
  }

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

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

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

  .page-support__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-support__content-area {
    padding: 40px 15px;
  }

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

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

  .page-support__faq-grid,
  .page-support__contact-grid {
    grid-template-columns: 1fr;
  }

  .page-support__responsible-gaming-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-support__responsible-gaming-image {
    width: 100%;
    max-width: 100%;
  }

  .page-support img {
    max-width: 100%;
    height: auto;
  }
}