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

.page-support__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.6; /* Slightly dim the image to make text pop */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

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

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

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

.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;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
  cursor: pointer;
}

.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--tertiary {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
}

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

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

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

.page-support__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-support__how-we-help-section,
.page-support__faq-list-section,
.page-support__contact-us-section,
.page-support__responsible-gaming-section,
.page-support__feedback-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-support__how-we-help-section {
  background-color: #f8f8f8;
}

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

.page-support__help-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__card-image {
  width: 400px; /* Display width */
  height: 300px; /* Display height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-support__faq-items {
  margin-top: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-support__faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px;
  cursor: pointer;
  background-color: #FFFFFF;
}

.page-support__faq-item:last-child {
  border-bottom: none;
}

.page-support__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin: 0;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

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

.page-support__faq-item.active .page-support__faq-question::after {
  content: '-';
}

.page-support__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-top: 15px;
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-answer {
  display: block;
  opacity: 1;
  max-height: 500px; /* Adjust as needed for content */
}

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

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

.page-support__contact-method {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support__method-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-support__responsible-gaming-section {
  background-color: #f8f8f8;
  text-align: center;
}

.page-support__responsible-gaming-image {
  width: 800px; /* Display width */
  height: 600px; /* Display height */
  object-fit: cover;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  max-width: 100%;
  min-width: 200px;
  min-height: 200px;
}

.page-support__responsible-gaming-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-support__feedback-section {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
  }

  .page-support__hero-content {
    padding: 60px 15px;
  }

  .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__button {
    width: 100%;
    min-width: unset;
  }

  .page-support__heading {
    font-size: 2em;
  }

  .page-support__text {
    font-size: 0.95em;
  }

  .page-support__help-cards,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-support__card-image,
  .page-support__responsible-gaming-image {
    width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Important for mobile responsiveness */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }

  /* Ensure no horizontal scrolling */
  .page-support__container {
    padding: 20px 15px;
  }

  .page-support {
    overflow-x: hidden;
  }

  /* Content area image CSS dimensions lower bound (by scope, not class name) */
  /* Any img within .page-support should not be smaller than 200px */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}