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

.page-support__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #f8f8f8;
  text-align: center;
  padding-bottom: 40px;
}

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

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

.page-support__hero-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.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;
  color: #000000;
}

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

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

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

.page-support__faq-section {
  background-color: #ffffff;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__faq-category {
  margin-bottom: 40px;
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-category-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-support__faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

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

.page-support__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
}

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

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

.page-support__faq-answer {
  font-size: 1em;
  color: #444444;
  padding-left: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
}

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

.page-support__section-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__section-image--contact {
  margin-top: 60px;
}

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

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

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

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

.page-support__contact-card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-support__contact-card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 25px;
}

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

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

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

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

.page-support__resource-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.page-support__resource-card-image {
  display: block;
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-support__resource-card-title {
  font-size: 1.4em;
  color: #000000;
  margin: 20px 15px 10px;
}

.page-support__resource-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-support__resource-card-title a:hover {
  text-decoration: underline;
}

.page-support__resource-card-description {
  font-size: 0.9em;
  color: #666666;
  padding: 0 15px 20px;
}

.page-support__button--tertiary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  margin-bottom: 20px;
}

.page-support__button--tertiary:hover {
  background-color: #000000;
  color: #FCBC45;
}

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

.page-support__responsible-gambling-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-support__responsible-gambling-text {
  flex: 1;
}

.page-support__responsible-gambling-text p {
  margin-bottom: 20px;
  color: #444444;
}

.page-support__responsible-gambling-image {
  flex: 1;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.page-support__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__button--register {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-support__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-support__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

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

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
  }
  .page-support__faq-category-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__resource-grid {
    grid-template-columns: 1fr;
  }
  .page-support__responsible-gambling-content {
    flex-direction: column;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure all content images are responsive and do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__resource-card-image {
    height: 200px; /* Adjust height for mobile */
  }
  .page-support__faq-answer.active {
    max-height: 800px; /* Adjust max-height for mobile content */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1em;
  }
  .page-support__faq-answer {
    font-size: 0.9em;
  }
  .page-support__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
}