/* style/support-responsible-gambling-help.css */

/* General page styling */
.page-support-responsible-gambling-help {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

.page-support-responsible-gambling-help__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-support-responsible-gambling-help__hero {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Gradient from Burgundy to Gold */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF; /* White text on gradient background */
}

.page-support-responsible-gambling-help__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-support-responsible-gambling-help__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #F0F0F0;
}

.page-support-responsible-gambling-help__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Burgundy text on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-support-responsible-gambling-help__button:hover {
  background-color: #b39700; /* Darker gold on hover */
  color: #FFFFFF; /* White text on hover */
}

.page-support-responsible-gambling-help__button--secondary {
  background-color: #8B0000; /* Burgundy button */
  color: #FFD700; /* Gold text on burgundy button */
}

.page-support-responsible-gambling-help__button--secondary:hover {
  background-color: #ae4d4d; /* Lighter burgundy on hover */
  color: #FFFFFF;
}

.page-support-responsible-gambling-help__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Burgundy text on gold button */
}

.page-support-responsible-gambling-help__button--primary:hover {
  background-color: #b39700; /* Darker gold on hover */
  color: #FFFFFF;
}

.page-support-responsible-gambling-help__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-support-responsible-gambling-help__section:last-of-type {
  border-bottom: none;
}

.page-support-responsible-gambling-help__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold title */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-support-responsible-gambling-help__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-support-responsible-gambling-help__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-support-responsible-gambling-help__list li {
  background-color: rgba(255, 215, 0, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.05em;
  color: #F0F0F0;
}

.page-support-responsible-gambling-help__list li strong {
  color: #FFD700;
}

.page-support-responsible-gambling-help__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-support-responsible-gambling-help__grid-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support-responsible-gambling-help__grid-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-support-responsible-gambling-help__grid-item p {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-support-responsible-gambling-help__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Makes icon gold */
}

.page-support-responsible-gambling-help__image-text-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-support-responsible-gambling-help__image-text-layout--reverse {
  flex-direction: column-reverse;
}

.page-support-responsible-gambling-help__image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-support-responsible-gambling-help__feature-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support-responsible-gambling-help__text-content {
  flex: 1;
  min-width: 300px;
}

.page-support-responsible-gambling-help__text-content h3 {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support-responsible-gambling-help__text-content p {
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-support-responsible-gambling-help__list--external li {
  border-left-color: #8B0000; /* Burgundy border for external links */
}

.page-support-responsible-gambling-help__external-link {
  color: #FFD700; /* Gold link */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-support-responsible-gambling-help__external-link:hover {
  color: #FFFFFF; /* White on hover */
}

.page-support-responsible-gambling-help__illustration {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support-responsible-gambling-help__faq-item {
  background-color: #2a2a2a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support-responsible-gambling-help__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-support-responsible-gambling-help__faq-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-support-responsible-gambling-help__contact-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-support-responsible-gambling-help__image-text-layout {
    flex-direction: row;
    text-align: left;
  }

  .page-support-responsible-gambling-help__image-text-layout--reverse {
    flex-direction: row-reverse;
  }

  .page-support-responsible-gambling-help__image-wrapper {
    padding: 0 20px;
  }

  .page-support-responsible-gambling-help__text-content {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .page-support-responsible-gambling-help__title {
    font-size: 2.5em;
  }

  .page-support-responsible-gambling-help__section-title {
    font-size: 2em;
  }

  .page-support-responsible-gambling-help__hero {
    padding: 80px 20px;
  }

  .page-support-responsible-gambling-help__list li,
  .page-support-responsible-gambling-help__section p,
  .page-support-responsible-gambling-help__text-content p {
    font-size: 1em;
  }

  .page-support-responsible-gambling-help__grid-item h3 {
    font-size: 1.3em;
  }

  .page-support-responsible-gambling-help__faq-item h3 {
    font-size: 1.2em;
  }
}