/* style/responsible-gambling-seek-help.css */
.page-responsible-gambling-seek-help {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-responsible-gambling-seek-help__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-responsible-gambling-seek-help__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-responsible-gambling-seek-help__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-responsible-gambling-seek-help__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-responsible-gambling-seek-help__button--primary {
  background-color: #FFC107;
  color: #212529; /* Darker text for contrast */
}

.page-responsible-gambling-seek-help__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-responsible-gambling-seek-help__button--secondary {
  background-color: #007BFF;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-responsible-gambling-seek-help__button--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-responsible-gambling-seek-help__content-section {
  padding: 60px 0;
  text-align: left;
}

.page-responsible-gambling-seek-help__section--white-bg {
  background-color: #ffffff;
  color: #333;
}

.page-responsible-gambling-seek-help__section--blue-bg {
  background-color: #007BFF;
  color: #ffffff;
}

.page-responsible-gambling-seek-help__heading {
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
  font-weight: bold;
}

.page-responsible-gambling-seek-help__section--white-bg .page-responsible-gambling-seek-help__heading {
  color: #007BFF;
}

.page-responsible-gambling-seek-help__section--blue-bg .page-responsible-gambling-seek-help__heading {
  color: #FFC107;
}

.page-responsible-gambling-seek-help__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit;
}

.page-responsible-gambling-seek-help__text--small {
  font-size: 0.9em;
  margin-top: 30px;
  text-align: center;
}

.page-responsible-gambling-seek-help__list {
  list-style: disc inside;
  margin-bottom: 30px;
  padding-left: 20px;
  font-size: 1.1em;
  color: inherit;
}

.page-responsible-gambling-seek-help__list li {
  margin-bottom: 10px;
}

.page-responsible-gambling-seek-help__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-seek-help__image--centered {
  margin-left: auto;
  margin-right: auto;
}

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

.page-responsible-gambling-seek-help__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333;
}

.page-responsible-gambling-seek-help__section--blue-bg .page-responsible-gambling-seek-help__card {
  background-color: rgba(255, 255, 255, 0.95);
}

.page-responsible-gambling-seek-help__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling-seek-help__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #007BFF;
  font-weight: bold;
}

.page-responsible-gambling-seek-help__card-text {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-responsible-gambling-seek-help__card-link {
  display: inline-block;
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFC107;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-responsible-gambling-seek-help__card-link:hover {
  color: #e0a800;
  border-color: #e0a800;
}

.page-responsible-gambling-seek-help__link--inline {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-responsible-gambling-seek-help__link--inline:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-responsible-gambling-seek-help__contact-section {
  text-align: center;
  background-color: #f0f8ff;
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-responsible-gambling-seek-help__hero-section {
    padding: 80px 20px;
  }

  .page-responsible-gambling-seek-help__title {
    font-size: 2.2em;
  }

  .page-responsible-gambling-seek-help__subtitle,
  .page-responsible-gambling-seek-help__text,
  .page-responsible-gambling-seek-help__list {
    font-size: 1em;
  }

  .page-responsible-gambling-seek-help__heading {
    font-size: 1.8em;
  }

  .page-responsible-gambling-seek-help__grid-3 {
    grid-template-columns: 1fr;
  }

  .page-responsible-gambling-seek-help__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling-seek-help__title {
    font-size: 1.8em;
  }

  .page-responsible-gambling-seek-help__heading {
    font-size: 1.5em;
  }

  .page-responsible-gambling-seek-help__content-section {
    padding: 40px 0;
  }
}