.page-responsible-gaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#0a0a0a), so text must be light */
  padding-bottom: 60px; /* Add some padding for footer */
}

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

/* Hero Section */
.page-responsible-gaming__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px; /* Minimum height for hero */
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #0a0a0a; /* Ensure hero background is consistent with body */
  overflow: hidden;
}

.page-responsible-gaming__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Make image subtle behind text */
}

.page-responsible-gaming__hero-section .page-responsible-gaming__container {
  position: relative;
  z-index: 1;
}

.page-responsible-gaming__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-responsible-gaming__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
}

/* Primary Button - Promotion Link */
.page-responsible-gaming__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
  border: none;
}

.page-responsible-gaming__btn-primary:hover {
  background-color: #d16e06;
}

/* Content Sections */
.page-responsible-gaming__content-section,
.page-responsible-gaming__tools-section,
.page-responsible-gaming__problem-gaming-section,
.page-responsible-gaming__support-section,
.page-responsible-gaming__minor-protection-section,
.page-responsible-gaming__faq-section {
  padding: 60px 0;
  text-align: center;
}

.page-responsible-gaming__dark-bg {
  background-color: #0a0a0a; /* Consistent with body background */
  color: #ffffff;
}

.page-responsible-gaming__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-responsible-gaming__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-responsible-gaming__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: left;
}

.page-responsible-gaming__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features Grid */
.page-responsible-gaming__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}