.page-responsible-gambling-self-exclusion {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-responsible-gambling-self-exclusion__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #3f479a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling-self-exclusion__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-responsible-gambling-self-exclusion__hero-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-self-exclusion__hero-subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-responsible-gambling-self-exclusion__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-self-exclusion__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
}

.page-responsible-gambling-self-exclusion__section--dark {
  background-color: #1A237E;
  color: #E0E0E0;
}

.page-responsible-gambling-self-exclusion__section-title {
  font-size: 2.5em;
  color: #1A237E;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-responsible-gambling-self-exclusion__section--dark .page-responsible-gambling-self-exclusion__section-title {
  color: #FFD700;
}

.page-responsible-gambling-self-exclusion__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-responsible-gambling-self-exclusion__section--dark .page-responsible-gambling-self-exclusion__section-title::after {
  background-color: #FFD700;
}

.page-responsible-gambling-self-exclusion__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-responsible-gambling-self-exclusion__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-self-exclusion__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-responsible-gambling-self-exclusion__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-responsible-gambling-self-exclusion__list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-responsible-gambling-self-exclusion__numbered-list {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-responsible-gambling-self-exclusion__numbered-list li {
  counter-increment: my-awesome-counter;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-responsible-gambling-self-exclusion__numbered-list li::before {
  content: counter(my-awesome-counter) ".";
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}