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

.page-responsible-gambling__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-responsible-gambling__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-responsible-gambling__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-responsible-gambling__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-responsible-gambling__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-responsible-gambling__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 0 10px;
  border: none;
  cursor: pointer;
}

.page-responsible-gambling__button--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A202C; /* Main color as text */
}

.page-responsible-gambling__button--primary:hover {
  background-color: #e6c200;
}

.page-responsible-gambling__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary color */
  border: 2px solid #FFD700;
}

.page-responsible-gambling__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

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

.page-responsible-gambling__content-section {
  padding: 60px 0;
  background-color: #1A202C; /* Main color for section background */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-responsible-gambling__content-section:last-of-type {
  border-bottom: none;
}

.page-responsible-gambling__content-section--introduction {
  background-color: #0d1117; /* Body background color for contrast */
}

.page-responsible-gambling__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-responsible-gambling__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
}

.page-responsible-gambling__sub-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-responsible-gambling__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-responsible-gambling__text--note {
  font-style: italic;
  font-size: 0.95em;
  color: #aaaaaa;
  margin-top: 40px;
}

.page-responsible-gambling__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-responsible-gambling__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-responsible-gambling__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-responsible-gambling__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-responsible-gambling__card-text {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-responsible-gambling__button--card {
  margin-top: auto; /* Push button to bottom */
  width: 100%;
  box-sizing: border-box;
}

.page-responsible-gambling__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-responsible-gambling__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-responsible-gambling__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-responsible-gambling__resource-card {
  background-color: rgba(255, 215, 0, 0.1); /* Lighter background for resource cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-responsible-gambling__resource-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-responsible-gambling__resource-text {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-responsible-gambling__button--resource {
  margin-top: auto;
  background-color: #FFD700;
  color: #1A202C;
  width: 100%;
  box-sizing: border-box;
}

.page-responsible-gambling__button--resource:hover {
  background-color: #e6c200;
}

.page-responsible-gambling__content-section--conclusion {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-responsible-gambling__hero-title {
    font-size: 2.5em;
  }
  .page-responsible-gambling__hero-description {
    font-size: 1.1em;
  }
  .page-responsible-gambling__section-title {
    font-size: 2em;
  }
  .page-responsible-gambling__card-image,
  .page-responsible-gambling__resource-card img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling__hero-section {
    min-height: 400px;
  }
  .page-responsible-gambling__hero-content {
    padding: 30px;
  }
  .page-responsible-gambling__hero-title {
    font-size: 2em;
  }
  .page-responsible-gambling__hero-description {
    font-size: 1em;
  }
  .page-responsible-gambling__button {
    padding: 10px 20px;
    margin: 5px;
  }
  .page-responsible-gambling__section-title {
    font-size: 1.8em;
  }
  .page-responsible-gambling__sub-title {
    font-size: 1.5em;
  }
  .page-responsible-gambling__text {
    font-size: 1em;
  }
  .page-responsible-gambling__grid,
  .page-responsible-gambling__resource-grid {
    grid-template-columns: 1fr;
  }
  .page-responsible-gambling__card-image,
  .page-responsible-gambling__resource-card img {
    height: auto;
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
  }
  /* Ensure all images within content area are responsive and not too small */
  .page-responsible-gambling img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even for responsive images */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling__hero-title {
    font-size: 1.5em;
  }
  .page-responsible-gambling__hero-description {
    font-size: 0.9em;
  }
  .page-responsible-gambling__button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-responsible-gambling__section-title {
    font-size: 1.5em;
  }
  .page-responsible-gambling__card,
  .page-responsible-gambling__resource-card {
    padding: 20px;
  }
  .page-responsible-gambling__card-image {
    height: 200px;
  }
}