/* style/responsible-gambling-self-exclusion-tools.css */
.page-responsible-gambling-self-exclusion-tools {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-responsible-gambling-self-exclusion-tools__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-responsible-gambling-self-exclusion-tools__hero {
  background: linear-gradient(135deg, #0A2342 0%, #304e7a 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling-self-exclusion-tools__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,subtle_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-responsible-gambling-self-exclusion-tools__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E6B325; /* Accent color for title */
  position: relative;
  z-index: 1;
}

.page-responsible-gambling-self-exclusion-tools__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-responsible-gambling-self-exclusion-tools__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-responsible-gambling-self-exclusion-tools__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-responsible-gambling-self-exclusion-tools__button--primary {
  background-color: #E6B325;
  color: #0A2342;
  border: 2px solid #E6B325;
}

.page-responsible-gambling-self-exclusion-tools__button--primary:hover {
  background-color: #ffc84d;
  border-color: #ffc84d;
}

.page-responsible-gambling-self-exclusion-tools__button--secondary {
  background-color: transparent;
  color: #E6B325;
  border: 2px solid #E6B325;
}

.page-responsible-gambling-self-exclusion-tools__button--secondary:hover {
  background-color: #E6B325;
  color: #0A2342;
}

.page-responsible-gambling-self-exclusion-tools__section {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.page-responsible-gambling-self-exclusion-tools__section:last-of-type {
  border-bottom: none;
}

.page-responsible-gambling-self-exclusion-tools__section--why-important {
  background-color: #f8f8f8;
}

.page-responsible-gambling-self-exclusion-tools__section--tools-overview {
  background-color: #ffffff;
}

.page-responsible-gambling-self-exclusion-tools__section--how-to {
  background-color: #f8f8f8;
}

.page-responsible-gambling-self-exclusion-tools__section--tips {
  background-color: #ffffff;
}

.page-responsible-gambling-self-exclusion-tools__section--commitment {
  background-color: #0A2342;
  color: #FFFFFF;
  text-align: center;
}

.page-responsible-gambling-self-exclusion-tools__section--commitment .page-responsible-gambling-self-exclusion-tools__heading {
  color: #E6B325;
}

.page-responsible-gambling-self-exclusion-tools__heading {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-responsible-gambling-self-exclusion-tools__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #555;
}

.page-responsible-gambling-self-exclusion-tools__section--commitment .page-responsible-gambling-self-exclusion-tools__description {
  color: #E0E0E0;
}

.page-responsible-gambling-self-exclusion-tools__content-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-responsible-gambling-self-exclusion-tools__content-flex--reversed {
  flex-direction: row-reverse;
}

.page-responsible-gambling-self-exclusion-tools__text-content {
  flex: 1;
}

.page-responsible-gambling-self-exclusion-tools__text-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #444;
}

.page-responsible-gambling-self-exclusion-tools__section--commitment .page-responsible-gambling-self-exclusion-tools__text-content p {
  color: #E0E0E0;
}

.page-responsible-gambling-self-exclusion-tools__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-responsible-gambling-self-exclusion-tools__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-self-exclusion-tools__tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-responsible-gambling-self-exclusion-tools__tool-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-self-exclusion-tools__tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-self-exclusion-tools__tool-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-responsible-gambling-self-exclusion-tools__tool-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-responsible-gambling-self-exclusion-tools__tool-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
}

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

.page-responsible-gambling-self-exclusion-tools__tool-link:hover {
  color: #ffc84d;
  border-color: #ffc84d;
}

.page-responsible-gambling-self-exclusion-tools__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.page-responsible-gambling-self-exclusion-tools__steps li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #444;
}

.page-responsible-gambling-self-exclusion-tools__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0A2342;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-responsible-gambling-self-exclusion-tools__steps li strong {
  color: #0A2342;
}

.page-responsible-gambling-self-exclusion-tools__steps li a {
  color: #E6B325;
  text-decoration: none;
  font-weight: bold;
}

.page-responsible-gambling-self-exclusion-tools__steps li a:hover {
  text-decoration: underline;
}

.page-responsible-gambling-self-exclusion-tools__note {
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #777;
}

.page-responsible-gambling-self-exclusion-tools__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-responsible-gambling-self-exclusion-tools__tips-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-responsible-gambling-self-exclusion-tools__tips-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #E6B325;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-responsible-gambling-self-exclusion-tools__cta-final {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-responsible-gambling-self-exclusion-tools__title {
    font-size: 2.8em;
  }
  .page-responsible-gambling-self-exclusion-tools__heading {
    font-size: 2em;
  }
  .page-responsible-gambling-self-exclusion-tools__content-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-responsible-gambling-self-exclusion-tools__content-flex--reversed {
    flex-direction: column;
  }
  .page-responsible-gambling-self-exclusion-tools__image-wrapper {
    margin-top: 30px;
  }
  .page-responsible-gambling-self-exclusion-tools__tool-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling-self-exclusion-tools__hero {
    padding: 80px 0;
  }
  .page-responsible-gambling-self-exclusion-tools__title {
    font-size: 2.2em;
  }
  .page-responsible-gambling-self-exclusion-tools__subtitle {
    font-size: 1.1em;
  }
  .page-responsible-gambling-self-exclusion-tools__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-responsible-gambling-self-exclusion-tools__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-responsible-gambling-self-exclusion-tools__section {
    padding: 60px 0;
  }
  .page-responsible-gambling-self-exclusion-tools__heading {
    font-size: 1.8em;
  }
  .page-responsible-gambling-self-exclusion-tools__description {
    font-size: 1em;
  }
  .page-responsible-gambling-self-exclusion-tools__steps li {
    font-size: 1em;
    padding-left: 40px;
  }
  .page-responsible-gambling-self-exclusion-tools__steps li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-responsible-gambling-self-exclusion-tools__tips-list li {
    font-size: 1em;
  }
  .page-responsible-gambling-self-exclusion-tools__cta-final {
    flex-direction: column;
    gap: 15px;
  }
}