.page-responsible-gambling {
  color: #333333; /* Dark text for default light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-responsible-gambling__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  min-height: 500px; /* Minimum height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.page-responsible-gambling__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-responsible-gambling__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for better text contrast */
}

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

.page-responsible-gambling__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-responsible-gambling__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1A202C; /* Dark secondary color for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-responsible-gambling__hero-button:hover {
  background-color: #e6c200;
  color: #0d1016;
}

.page-responsible-gambling__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-responsible-gambling__section-title {
  font-size: 2.2em;
  color: #1A202C; /* Dark secondary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-responsible-gambling__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-responsible-gambling__sub-section-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

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

.page-responsible-gambling__tool-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling__tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling__tool-icon {
  width: 200px; /* Min image size 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-responsible-gambling__tool-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-responsible-gambling__tool-description {
  font-size: 1em;
  color: #555555;
}

.page-responsible-gambling__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-responsible-gambling__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
}

.page-responsible-gambling__button-group {
  text-align: center;
  margin-top: 40px;
}

.page-responsible-gambling__button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1A202C; /* Dark secondary color for text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
}

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

.page-responsible-gambling__button--secondary {
  background-color: #1A202C; /* Dark secondary color */
  color: #ffffff;
}

.page-responsible-gambling__button--secondary:hover {
  background-color: #3a4250;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-responsible-gambling__hero-title {
    font-size: 2em;
  }

  .page-responsible-gambling__hero-description {
    font-size: 1em;
  }

  .page-responsible-gambling__section-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling__sub-section-title {
    font-size: 1.5em;
  }

  .page-responsible-gambling__paragraph,
  .page-responsible-gambling__list-item,
  .page-responsible-gambling__tool-description {
    font-size: 0.95em;
  }

  .page-responsible-gambling__tool-icon {
    max-width: 100%;
    height: auto;
  }
  
  .page-responsible-gambling__content-area img {
    max-width: 100%;
    height: auto;
  }

  .page-responsible-gambling__hero-section {
    min-height: 400px;
  }

  .page-responsible-gambling__hero-content {
    padding: 15px;
  }
  
  .page-responsible-gambling__button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling__hero-title {
    font-size: 1.6em;
  }

  .page-responsible-gambling__hero-description {
    font-size: 0.9em;
  }

  .page-responsible-gambling__section-title {
    font-size: 1.6em;
  }

  .page-responsible-gambling__tool-card {
    padding: 20px;
  }
}