.page-support {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* Body background */
}

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

.page-support__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)); /* Overlay for text readability */
  z-index: 1;
}

.page-support__hero-section .page-support__container {
  position: relative;
  z-index: 2;
}

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

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

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

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

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

.page-support__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.page-support__contact-options-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-support__option-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-support__option-icon {
  width: 200px; /* Min size */
  height: 150px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-support__option-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-support__button--card {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
  padding: 10px 25px;
  font-size: 1em;
}

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

.page-support__faq-section {
  padding: 60px 0;
}

.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f5f5f5;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

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

.page-support__faq-answer.active {
  max-height: 500px; /* Arbitrary large value to allow content to show */
  padding: 20px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444444;
}

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

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

.page-support__more-faq {
  text-align: center;
  margin-top: 40px;
}

.page-support__more-faq p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555555;
}

.page-support__resources-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-support__resource-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-support__resource-image {
  width: 100%;
  height: 250px; /* Large image for cards */
  object-fit: cover;
}

.page-support__resource-card h3 {
  padding: 20px 25px 10px;
  font-size: 1.5em;
  color: #000000;
}

.page-support__resource-card h3 a {
  text-decoration: none;
  color: inherit;
}

.page-support__resource-card h3 a:hover {
  color: #FCBC45;
}

.page-support__resource-description {
  padding: 0 25px 25px;
  font-size: 0.95em;
  color: #666666;
  line-height: 1.5;
}

.page-support__responsible-gaming-section {
  padding: 60px 0;
  text-align: center;
}

.page-support__responsible-gaming-section p {
  max-width: 900px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
  color: #444444;
  font-size: 1.1em;
}

.page-support__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-support__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-support__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

.page-support__button--cta-register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border-color: #FFFFFF;
}

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

.page-support__button--cta-login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border-color: #FCBC45;
}

.page-support__button--cta-login:hover {
  background-color: #e0a73c;
  border-color: #e0a73c;
}

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

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description,
  .page-support__section-intro,
  .page-support__responsible-gaming-section p,
  .page-support__cta-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__options-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__option-icon,
  .page-support__resource-image {
    max-width: 100%;
    height: auto;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 15px 20px;
  }
  .page-support__faq-question::after {
    right: 20px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure all images within .page-support are responsive and don't overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__cta-title {
    font-size: 1.5em;
  }
  .page-support__option-icon,
  .page-support__resource-image {
    width: 100%; /* Ensure width is 100% to fill card, height auto for aspect ratio */
    height: auto;
    min-height: 200px; /* Enforce min height for content images */
    object-fit: cover;
  }
}