.page-support {
  color: #000000; /* Dark text for light background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px);
}

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

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #000000; /* Dark background for hero for contrast */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  z-index: 1;
  position: relative;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.5;
}

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

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

.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;
  min-width: 200px;
  text-align: center;
}

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

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

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

.page-support__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

.page-support__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  min-width: 250px;
}

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

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

.page-support__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #eee;
}

.page-support__faq-question {
  font-size: 1.2em;
  padding: 20px;
  margin: 0;
  background-color: #FFFFFF;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support__faq-item--active .page-support__faq-question::after {
  content: '-';
  transform: rotate(0deg);
}

.page-support__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-support__faq-item--active .page-support__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-support__faq-link {
  display: inline-block;
  margin-top: 15px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

.page-support__faq-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: 300px;
  object-fit: contain;
  opacity: 0.1;
  z-index: 0;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-support__contact-section .page-support__section-title,
.page-support__contact-section .page-support__section-subtitle {
  color: #FFFFFF;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.page-support__responsible-gaming-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__responsible-gaming-image {
  margin-top: 40px;
  width: 400px;
  height: 300px;
  object-fit: contain;
  opacity: 0.8;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-section {
  padding: 80px 0;
  background-color: #f0f0f0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__cta-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__hero-description {
    font-size: 1.2em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 20px 30px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    min-width: unset;
    width: 100%;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 0.9em;
  }
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__responsible-gaming-section,
  .page-support__cta-section {
    padding: 60px 0;
  }
  .page-support__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__faq-image,
  .page-support__responsible-gaming-image {
    width: 250px;
    height: 200px;
  }
  /* Mobile image scaling for content area */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__faq-image {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-support__faq-item--active .page-support__faq-answer {
    max-height: 300px; /* Allow more height for small screens */
  }
  .page-support__faq-image {
    width: 200px;
    height: 150px;
  }
  .page-support__responsible-gaming-image {
    width: 200px;
    height: 150px;
  }
}