.page-resources-responsible-gambling {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-resources-responsible-gambling__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-responsible-gambling__hero {
  background: linear-gradient(135deg, #FFD700 0%, #000000 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-responsible-gambling__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold text on dark background for contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-responsible-gambling__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-responsible-gambling__section {
  padding: 60px 0;
  background-color: #fff;
  color: #000;
}

.page-resources-responsible-gambling__section--dark {
  background-color: #000000;
  color: #f0f0f0;
}

.page-resources-responsible-gambling__section-title {
  font-size: 2.5em;
  color: #000000; /* Dark title on light background */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-responsible-gambling__section--dark .page-resources-responsible-gambling__section-title {
  color: #FFD700; /* Gold title on dark background */
}

.page-resources-responsible-gambling__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-responsible-gambling__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-responsible-gambling__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-resources-responsible-gambling__feature-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-responsible-gambling__feature-item:hover {
  transform: translateY(-10px);
  background-color: #333;
}

.page-resources-responsible-gambling__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(1) drop-shadow(0 0 5px #FFD700);
}

.page-resources-responsible-gambling__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-responsible-gambling__feature-description {
  font-size: 1em;
  color: #ccc;
}

.page-resources-responsible-gambling__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333;
}

.page-resources-responsible-gambling__section--dark .page-resources-responsible-gambling__list {
  color: #f0f0f0;
}

.page-resources-responsible-gambling__list li {
  margin-bottom: 10px;
}

.page-resources-responsible-gambling__section--cta {
  background-color: #FFD700;
  color: #000;
  text-align: center;
}

.page-resources-responsible-gambling__section--cta .page-resources-responsible-gambling__section-title {
  color: #000;
}

.page-resources-responsible-gambling__section--cta .page-resources-responsible-gambling__text {
  color: #333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

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

/* Buttons */
.page-resources-responsible-gambling__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-resources-responsible-gambling__btn--primary {
  background-color: #000000;
  color: #FFD700;
  border-color: #FFD700;
}

.page-resources-responsible-gambling__btn--primary:hover {
  background-color: #333333;
  color: #FFF;
  border-color: #FFF;
}

.page-resources-responsible-gambling__btn--secondary {
  background-color: #000000;
  color: #FFD700;
  border-color: #FFD700;
}

.page-resources-responsible-gambling__btn--secondary:hover {
  background-color: #333333;
  color: #FFF;
  border-color: #FFF;
}

.page-resources-responsible-gambling__btn--outline {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

.page-resources-responsible-gambling__btn--outline:hover {
  background-color: #000000;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-responsible-gambling__hero-title {
    font-size: 2.5em;
  }
  .page-resources-responsible-gambling__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-responsible-gambling__section-title {
    font-size: 2em;
  }
  .page-resources-responsible-gambling__features-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-responsible-gambling__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-responsible-gambling__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-responsible-gambling__hero-title {
    font-size: 2em;
  }
  .page-resources-responsible-gambling__hero-subtitle {
    font-size: 0.9em;
  }
  .page-resources-responsible-gambling__section-title {
    font-size: 1.8em;
  }
  .page-resources-responsible-gambling__btn {
    width: 100%;
  }
}