/* style/responsible-gaming.css */

/* Base styles for the page content */
.page-responsible-gaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for the dark body background */
  background-color: transparent; /* Inherit from body or shared, ensuring contrast */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

/* Container for content sections */
.page-responsible-gaming__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section styling */
.page-responsible-gaming__section {
  padding: 80px 0;
  text-align: center;
}

.page-responsible-gaming__dark-bg {
  background-color: #1a1a2e; /* Ensure dark background for sections that need it */
  color: #ffffff;
}

.page-responsible-gaming__light-bg {
  background-color: #f5f5f5; /* Light background for contrast sections */
  color: #333333;
}

/* Hero Section */
.page-responsible-gaming__hero-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

.page-responsible-gaming__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Slightly dimmed to make text readable */
}

.page-responsible-gaming__hero-title {
  font-size: 3.5em;
  color: #26A9E0; /* Brand color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}