/* style/responsible-gambling-seeking-help-resources.css */
.page-responsible-gambling-seeking-help-resources {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #1A202C; /* Main dark background */
}

.page-responsible-gambling-seeking-help-resources__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-responsible-gambling-seeking-help-resources__hero {
  background: linear-gradient(135deg, #1A202C, #3A455C);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling-seeking-help-resources__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-responsible-gambling-seeking-help-resources__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-seeking-help-resources__hero-subtitle,
.page-responsible-gambling-seeking-help-resources__hero-text {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-responsible-gambling-seeking-help-resources__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-responsible-gambling-seeking-help-resources__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15; /* Subtle background image */
  filter: grayscale(100%);
}

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

.page-responsible-gambling-seeking-help-resources__section:last-of-type {
  border-bottom: none;
}

.page-responsible-gambling-seeking-help-resources__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-responsible-gambling-seeking-help-resources__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-responsible-gambling-seeking-help-resources__section-description,
.page-responsible-gambling-seeking-help-resources__text {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-responsible-gambling-seeking-help-resources__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-responsible-gambling-seeking-help-resources__list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-responsible-gambling-seeking-help-resources__list-icon {
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-responsible-gambling-seeking-help-resources__list-icon::before {
  content: '✓';
  color: #1A202C;
  font-size: 0.9em;
  line-height: 1;
}

.page-responsible-gambling-seeking-help-resources__ordered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  counter-reset: my-awesome-counter;
}

.page-responsible-gambling-seeking-help-resources__ordered-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-responsible-gambling-seeking-help-resources__list-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A202C;
  font-weight: bold;
  counter-increment: my-awesome-counter;
}

.page-responsible-gambling-seeking-help-resources__list-number::before {
  content: counter(my-awesome-counter);
}

.page-responsible-gambling-seeking-help-resources__note {
  font-style: italic;
  color: #AAAAAA;
  text-align: center;
  margin-top: 30px;
  font-size: 0.95em;
}

.page-responsible-gambling-seeking-help-resources__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling-seeking-help-resources__section-image--large {
  max-width: 80%;
}

.page-responsible-gambling-seeking-help-resources__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  text-align: center;
}

.page-responsible-gambling-seeking-help-resources__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-responsible-gambling-seeking-help-resources__btn--primary:hover {
  background-color: #E5C100;
  border-color: #E5C100;
}

.page-responsible-gambling-seeking-help-resources__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-responsible-gambling-seeking-help-resources__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-responsible-gambling-seeking-help-resources__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

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

.page-responsible-gambling-seeking-help-resources__organization-card {
  background-color: #2A3141; /* Slightly lighter dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-responsible-gambling-seeking-help-resources__organization-logo {
  max-width: 80px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-responsible-gambling-seeking-help-resources__organization-name {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-responsible-gambling-seeking-help-resources__organization-info {
  color: #C0C0C0;
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-responsible-gambling-seeking-help-resources__contact-info {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-responsible-gambling-seeking-help-resources__contact-info p {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-responsible-gambling-seeking-help-resources__hero-title {
    font-size: 2.5em;
  }

  .page-responsible-gambling-seeking-help-resources__hero-subtitle,
  .page-responsible-gambling-seeking-help-resources__hero-text {
    font-size: 1em;
  }

  .page-responsible-gambling-seeking-help-resources__section-title {
    font-size: 2em;
  }

  .page-responsible-gambling-seeking-help-resources__subsection-title {
    font-size: 1.5em;
  }

  .page-responsible-gambling-seeking-help-resources__section {
    padding: 40px 0;
  }

  .page-responsible-gambling-seeking-help-resources__organization-grid {
    grid-template-columns: 1fr;
  }

  .page-responsible-gambling-seeking-help-resources__section-image--large {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling-seeking-help-resources__hero-title {
    font-size: 2em;
  }

  .page-responsible-gambling-seeking-help-resources__hero-content {
    padding: 0 15px;
  }

  .page-responsible-gambling-seeking-help-resources__section-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling-seeking-help-resources__list li,
  .page-responsible-gambling-seeking-help-resources__ordered-list li,
  .page-responsible-gambling-seeking-help-resources__section-description,
  .page-responsible-gambling-seeking-help-resources__text {
    font-size: 0.95em;
  }

  .page-responsible-gambling-seeking-help-resources__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-responsible-gambling-seeking-help-resources__btn--large {
    padding: 12px 25px;
    font-size: 1em;
}
}