/* style/responsible-gaming.css */

/* Variables and Base Styles */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #017439; /* Using primary color for dark sections */
  --accent-red: #C30808; /* Register/Login buttons */
  --accent-yellow: #FFFF00; /* Register/Login font */
}

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

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

/* Hero Section */
.page-responsible-gaming__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--background-light); /* Default light background */
}

.page-responsible-gaming__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-responsible-gaming__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-responsible-gaming__hero-content {
  width: 100%;
  max-width: 1200px; /* Constrain content width */
  padding: 40px 20px;
  text-align: center;
  color: var(--text-color-light); /* Text color for dark background */
  background-color: var(--background-dark); /* Dark background for content */
  margin-top: -2px; /* Slight overlap to avoid gap */
  box-sizing: border-box;
}

.page-responsible-gaming__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive H1, avoiding fixed large size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Section General */
.page-responsible-gaming__section {
  padding: 60px 0;
}

.page-responsible-gaming__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-responsible-gaming__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Light Background Sections */
.page-responsible-gaming__light-bg {
  background-color: var(--background-light);
  color: var(--text-color-dark);
}