.page-support {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px; /* Adjust as needed, considering the padding-top on .page-support */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
}

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

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.page-support__btn--primary {
  background-color: #FFD700;
  color: #0A0A0A;
  border: 2px solid #FFD700;
}

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

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

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
  transform: translateY(-2px);
}

.page-support__btn--small {
  padding: 8px 20px;
  font-size: 1em;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #0A0A0A;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

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

.page-support__why-us-section,
.page-support__faq-section,
.page-support__contact-channels-section,
.page-support__responsible-gaming-section,
.page-support__technical-assistance-section,
.page-support__security-privacy-section,
.page-support__game-guides-section,
.page-support__feedback-section,
.page-support__final-cta-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

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

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

.page-support__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 4px solid #FFD700;
}

.page-support__feature-title {
  font-size: 1.5em;
  color: #0A0A0A;
  margin-bottom: 15px;
}

.page-support__feature-description {
  color: #666666;
}

.page-support__faq-image,
.page-support__contact-image,
.page-support__responsible-gaming-image,
.page-support__tech-support-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 60px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-support__faq-category {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
}

.page-support__category-title {
  font-size: 1.4em;
  color: #0A0A0A;
  margin-bottom: 15px;
}

.page-support__faq-list {
  list-style: none;
  padding: 0;
}

.page-support__faq-list li {
  margin-bottom: 10px;
  color: #555555;
  position: relative;
  padding-left: 20px;
}

.page-support__faq-list li::before {
  content: '▶';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 0.8em;
  top: 4px;
}

.page-support__center-button {
  text-align: center;
  margin-top: 50px;
}

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

.page-support__channel-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  border-bottom: 4px solid #FFD700;
}

.page-support__channel-title {
  font-size: 1.5em;
  color: #0A0A0A;
  margin-bottom: 15px;
}

.page-support__channel-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-support__channel-info {
  color: #333333;
  font-weight: bold;
}

.page-support__email-link,
.page-support__phone-link {
  color: #0A0A0A;
  text-decoration: none;
}

.page-support__email-link:hover,
.page-support__phone-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-support__responsible-gaming-content,
.page-support__technical-assistance-content,
.page-support__security-privacy-content {
  margin-top: 40px;
}

.page-support__content-subtitle {
  font-size: 1.8em;
  color: #0A0A0A;
  margin-bottom: 20px;
}

.page-support__list {
  list-style: disc;
  margin-left: 20px;
  color: #555555;
}

.page-support__list li {
  margin-bottom: 10px;
}

.page-support__list li strong {
  color: #0A0A0A;
}

.page-support__content-text {
  margin-top: 25px;
  color: #666666;
}

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

.page-support__game-type-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border-right: 5px solid #FFD700;
}

.page-support__game-type-title {
  font-size: 1.4em;
  color: #0A0A0A;
  margin-bottom: 10px;
}

.page-support__game-type-description {
  color: #666666;
}

.page-support__final-cta-section {
  background-color: #0A0A0A;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  border-radius: 0; /* Full width */
  box-shadow: none;
}

.page-support__final-cta-section .page-support__section-title {
  color: #FFD700;
}

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

.page-support__final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-support__final-cta-buttons .page-support__btn--primary {
  background-color: #FFD700;
  color: #0A0A0A;
}

.page-support__final-cta-buttons .page-support__btn--primary:hover {
  background-color: #e6c200;
}

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

.page-support__final-cta-buttons .page-support__btn--secondary:hover {
  background-color: #ffffff;
  color: #0A0A0A;
}

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

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn {
    width: 100%;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 1em;
  }
  .page-support__features,
  .page-support__faq-categories,
  .page-support__channels-grid,
  .page-support__game-types-grid {
    grid-template-columns: 1fr;
  }
  .page-support__faq-category,
  .page-support__channel-item,
  .page-support__game-type-item {
    padding: 20px;
  }
  .page-support__hero-image,
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__responsible-gaming-image,
  .page-support__tech-support-image {
    max-width: 100%;
    height: auto;
  }
  .page-support__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__final-cta-buttons .page-support__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__hero-section {
    padding: 40px 15px;
  }
  .page-support__container {
    padding: 0 15px;
  }
}