/* style/responsible-gambling.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-button-color: #EA7C07;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-light: #e0e0e0;
  --bg-light: #f9f9f9;
}

.page-responsible-gambling {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color); /* Default light background */
}

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

.page-responsible-gambling__text-center {
  text-align: center;
}

/* Sections */
.page-responsible-gambling__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-responsible-gambling__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-responsible-gambling__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-responsible-gambling__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-responsible-gambling__section-title--white {
  color: var(--text-light);
}

.page-responsible-gambling__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-responsible-gambling__text-block--white {
  color: var(--text-light);
}

.page-responsible-gambling__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

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

.page-responsible-gambling__list--white .page-responsible-gambling__list-item {
  color: var(--text-light);
}

/* Hero Section */
.page-responsible-gambling__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-responsible-gambling__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-responsible-gambling__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-responsible-gambling__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-responsible-gambling__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-responsible-gambling__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-responsible-gambling__intro-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}