.page-responsible-gaming-self-exclusion {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-responsible-gaming-self-exclusion__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gaming-self-exclusion__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-responsible-gaming-self-exclusion__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-responsible-gaming-self-exclusion__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-responsible-gaming-self-exclusion__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-responsible-gaming-self-exclusion__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-responsible-gaming-self-exclusion__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-responsible-gaming-self-exclusion__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-responsible-gaming-self-exclusion__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-responsible-gaming-self-exclusion__button--register:hover {
  background-color: #E0E0E0;
  color: #000000;
}

.page-responsible-gaming-self-exclusion__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-responsible-gaming-self-exclusion__button--login:hover {
  background-color: #E6A83C;
  color: #000000;
}

.page-responsible-gaming-self-exclusion__section {
  padding: 60px 20px;
  border-bottom: 1px solid #EEEEEE;
  background-color: #FFFFFF;
}

.page-responsible-gaming-self-exclusion__section:last-of-type {
  border-bottom: none;
}

.page-responsible-gaming-self-exclusion__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-responsible-gaming-self-exclusion__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-responsible-gaming-self-exclusion__subsection-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-responsible-gaming-self-exclusion__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-responsible-gaming-self-exclusion__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-responsible-gaming-self-exclusion__ordered-list {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-responsible-gaming-self-exclusion__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-responsible-gaming-self-exclusion__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-responsible-gaming-self-exclusion__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-responsible-gaming-self-exclusion__call-to-action {
  text-align: center;
  margin-top: 50px;
}

.page-responsible-gaming-self-exclusion__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-responsible-gaming-self-exclusion__button--primary:hover {
  background-color: #E6A83C;
  color: #000000;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-responsible-gaming-self-exclusion__hero-title {
    font-size: 2.2em;
  }

  .page-responsible-gaming-self-exclusion__hero-description {
    font-size: 1em;
  }

  .page-responsible-gaming-self-exclusion__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-responsible-gaming-self-exclusion__button {
    width: 100%;
    max-width: 250px;
  }

  .page-responsible-gaming-self-exclusion__section-title {
    font-size: 1.8em;
  }

  .page-responsible-gaming-self-exclusion__subsection-title {
    font-size: 1.5em;
  }

  .page-responsible-gaming-self-exclusion__section-text,
  .page-responsible-gaming-self-exclusion__list-item {
    font-size: 0.95em;
  }

  .page-responsible-gaming-self-exclusion__image-wrapper img {
    max-width: 100%;
    height: auto;
  }
}