.page-responsible-gambling-tools {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for contrast on dark background */
  background-color: #0F1A2D; /* A slightly lighter dark blue for overall background */
}

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

.page-responsible-gambling-tools__hero {
  background: linear-gradient(135deg, #1A2B4C, #0F1A2D); /* Dark blue to slightly darker blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

.page-responsible-gambling-tools__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-responsible-gambling-tools__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #D3D3D3; /* Lighter gray for description */
}

.page-responsible-gambling-tools__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-responsible-gambling-tools__section:last-of-type {
  border-bottom: none;
}

.page-responsible-gambling-tools__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-responsible-gambling-tools__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-responsible-gambling-tools__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-responsible-gambling-tools__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-responsible-gambling-tools__text-content {
  flex: 1;
}

.page-responsible-gambling-tools__text-content h3 {
  color: #FFD700; /* Gold for sub-headings */
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-responsible-gambling-tools__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-responsible-gambling-tools__text-content ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-responsible-gambling-tools__text-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-responsible-gambling-tools__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-responsible-gambling-tools__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-responsible-gambling-tools__grid-item {
  background-color: #1A2B4C; /* Dark blue for grid items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
}

.page-responsible-gambling-tools__grid-item h3 {
  color: #FFD700; /* Gold for grid item titles */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-responsible-gambling-tools__grid-item p {
  font-size: 1em;
  line-height: 1.7;
}

.page-responsible-gambling-tools__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-responsible-gambling-tools__btn--cta {
  background-color: #FFD700; /* Gold for CTA */
  color: #1A2B4C; /* Dark blue text on gold */
  font-size: 1.1em;
  margin: 30px auto 0 auto;
}

.page-responsible-gambling-tools__btn--cta:hover {
  background-color: #E5C100; /* Slightly darker gold on hover */
}

.page-responsible-gambling-tools__btn--primary {
  background-color: #FFD700; /* Gold for primary buttons */
  color: #1A2B4C;
  margin-right: 15px;
}

.page-responsible-gambling-tools__btn--primary:hover {
  background-color: #E5C100;
}

.page-responsible-gambling-tools__btn--secondary {
  background-color: #1A2B4C; /* Dark blue for secondary buttons */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-responsible-gambling-tools__btn--secondary:hover {
  background-color: #0F1A2D; /* Darker blue on hover */
  color: #FFD700;
  border-color: #E5C100;
}

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

.page-responsible-gambling-tools__card {
  background-color: #1A2B4C; /* Dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-responsible-gambling-tools__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-responsible-gambling-tools__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-responsible-gambling-tools__card-title a:hover {
  text-decoration: underline;
}

.page-responsible-gambling-tools__card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #D3D3D3;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-responsible-gambling-tools__hero-title {
    font-size: 2.8em;
  }

  .page-responsible-gambling-tools__section-title {
    font-size: 2em;
  }

  .page-responsible-gambling-tools__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-responsible-gambling-tools__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-responsible-gambling-tools__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling-tools__hero {
    padding: 80px 0;
  }

  .page-responsible-gambling-tools__hero-title {
    font-size: 2.2em;
  }

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

  .page-responsible-gambling-tools__section {
    padding: 40px 0;
  }

  .page-responsible-gambling-tools__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-responsible-gambling-tools__text-content h3 {
    font-size: 1.5em;
  }

  .page-responsible-gambling-tools__text-content p, .page-responsible-gambling-tools__text-content ul li {
    font-size: 0.95em;
  }

  .page-responsible-gambling-tools__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-responsible-gambling-tools__card-title {
    font-size: 1.5em;
  }

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

  .page-responsible-gambling-tools__grid-item h3 {
    font-size: 1.3em;
  }
}

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

  .page-responsible-gambling-tools__section-title {
    font-size: 1.5em;
  }

  .page-responsible-gambling-tools__btn {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-responsible-gambling-tools__btn--cta, .page-responsible-gambling-tools__btn--secondary {
    margin-left: auto;
    margin-right: auto;
  }

  .page-responsible-gambling-tools__content-grid {
    grid-template-columns: 1fr;
  }
}