.page-responsible-gaming {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-responsible-gaming__section-title {
  font-size: 32px;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-responsible-gaming__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-responsible-gaming__hero-section {
  background: linear-gradient(135deg, #e6ffe6, #ffffff); /* Lighter green gradient */
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-responsible-gaming__hero-content {
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.page-responsible-gaming__hero-title {
  font-size: 48px;
  color: #017439;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-responsible-gaming__hero-description {
  font-size: 20px;
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-responsible-gaming__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #017439;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

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

.page-responsible-gaming__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

/* Principles Section */
.page-responsible-gaming__principles-section {
  padding: 80px 0;
}