/* style/responsible-gambling-self-exclusion-tools.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #1a1a2e;
  --background-light: #ffffff;
  --card-background-dark-theme: rgba(255, 255, 255, 0.1);
  --card-background-light-theme: #ffffff;
}

.page-responsible-gambling-self-exclusion-tools {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark (#1a1a2e), so text is light */
  background-color: var(--background-dark); /* Ensure consistency if main has a background */
}

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

.page-responsible-gambling-self-exclusion-tools__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Use var(--header-offset) in JS, but direct value here for clarity if no global body padding */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
  background-color: var(--primary-color); /* Fallback/example, hero image will cover */
}

.page-responsible-gambling-self-exclusion-tools__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
}

.page-responsible-gambling-self-exclusion-tools__hero-section .page-responsible-gambling-self-exclusion-tools__container {
  position: relative;
  z-index: 1;
}

.page-responsible-gambling-self-exclusion-tools__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-self-exclusion-tools__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gambling-self-exclusion-tools__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-responsible-gambling-self-exclusion-tools__btn-primary,
.page-responsible-gambling-self-exclusion-tools__btn-secondary {
  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, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-responsible-gambling-self-exclusion-tools__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-responsible-gambling-self-exclusion-tools__btn-primary:hover {
  background-color: #1f8bc2; /* Darken primary color */
  border-color: #1f8bc2;
}

.page-responsible-gambling-self-exclusion-tools__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-responsible-gambling-self-exclusion-tools__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}