.page-responsible-gaming {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #ffffff; /* Explicitly setting for clarity, though shared.css defines var(--secondary-color) */
}

/* Hero Section */
.page-responsible-gaming__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); /* Fixed header offset */
  background: linear-gradient(135deg, #e0ffe0, #ffffff); /* Lighter gradient for hero background */
}

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

.page-responsible-gaming__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.page-responsible-gaming__hero-title {
  font-size: 42px;
  color: #017439;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-responsible-gaming__hero-description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gaming__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Login/Register color */
  color: #FFFF00; /* Login/Register font color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-responsible-gaming__cta-button:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming__hero-image {
  width: 100%;
  margin-top: 30px; /* Separates image from content */
}

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

/* General Section Styling */
.page-responsible-gaming__section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333;
}

.page-responsible-gaming__section--importance {
  background-color: #f9f9f9;
}

.page-responsible-gaming__section--signs {
  background-color: #ffffff;
}

.page-responsible-gaming__section--underage-protection {
  background-color: #f9f9f9;
}

.page-responsible-gaming__section--contact {
  background-color: #ffffff;
}

.page-responsible-gaming__section--faq {
  background-color: #f9f9f9;
}

.page-responsible-gaming__dark-section {
  background-color: #017439; /* Main brand color */
  color: #ffffff; /* White text for dark background */
}

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