.page-support {
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A; /* Auxiliary dark background */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-support__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for hero content */
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6; /* Slightly dim the image to make text stand out */
}

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  max-width: 800px;
  padding: 20px;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  font-size: 1em;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

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

.page-support__button--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

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

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

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

.page-support__faq-section {
  background-color: #1A1A1A; /* Auxiliary dark background */
  padding: 80px 0;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

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

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding: 0 25px;
  color: #f0f0f0;
}

.page-support__faq-answer.open {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 10px;
}

.page-support__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-support__contact-section {
  padding: 80px 0;
  background-color: #0D0D0D; /* Body background */
}

.page-support__contact-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

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

.page-support__contact-card {
  background-color: #1A1A1A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-support__contact-icon {
  width: 250px; /* Larger icon size */
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold shadow */
}

.page-support__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__card-text {
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-support__contact-card .page-support__button {
  width: auto;
  min-width: 150px;
  background-color: #FFD700;
  color: #1A1A1A;
  border: none;
}

.page-support__contact-card .page-support__button:hover {
  background-color: #e6c200;
}

.page-support__responsible-gaming {
  background-color: #1A1A1A;
  padding: 80px 0;
  text-align: center;
}

.page-support__responsible-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

/* 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-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%;
    min-width: unset;
  }
  .page-support__hero-content {
    max-width: 90%;
  }
  .page-support__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__contact-icon {
    width: 200px; /* Smaller for mobile */
  }
  .page-support__contact-card .page-support__button {
    width: 100%;
  }
  /* Ensure images within content areas are responsive and not too small */
  .page-support img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-width for content images */
    min-height: 200px; /* Enforce min-height for content images */
  }
  .page-support__contact-icon {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__contact-card {
    padding: 20px;
  }
  .page-support__card-title {
    font-size: 1.5em;
  }
  .page-support__card-text {
    font-size: 0.9em;
  }
}