/* style/responsible-gambling.css */
.page-responsible-gambling {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for general text on light background */
  line-height: 1.6;
  background-color: #f8f9fa; /* Light background for the page */
}

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

.page-responsible-gambling__hero-section {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-responsible-gambling__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-responsible-gambling__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-responsible-gambling__section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

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

.page-responsible-gambling__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Main blue for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-responsible-gambling__section-title .highlight {
  color: #FFC107; /* Accent yellow for highlights */
}

.page-responsible-gambling__principles .page-responsible-gambling__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-responsible-gambling__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling__grid-item h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-responsible-gambling__grid-item p {
  color: #555555;
}

.page-responsible-gambling__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.page-responsible-gambling__tools .page-responsible-gambling__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-responsible-gambling__feature-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-responsible-gambling__feature-item h3 {
  font-size: 1.4em;
  color: #007BFF;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-responsible-gambling__feature-item p {
  color: #555555;
}

.page-responsible-gambling__feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.page-responsible-gambling__detail-links {
  background-color: #e9f7ff; /* Light blue background */
}

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

.page-responsible-gambling__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-responsible-gambling__card h3 {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-responsible-gambling__card p {
  color: #555555;
  margin-bottom: 25px;
}

.page-responsible-gambling__prevention ul {
  list-style: disc inside;
  margin-left: 20px;
  color: #555555;
  margin-bottom: 30px;
}

.page-responsible-gambling__prevention ul li {
  margin-bottom: 10px;
}

.page-responsible-gambling__prevention ul li a {
  color: #007BFF;
  text-decoration: underline;
}

.page-responsible-gambling__contact-methods p {
  margin-bottom: 10px;
  color: #555555;
}

.page-responsible-gambling__contact-methods strong {
  color: #007BFF;
}

.page-responsible-gambling__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;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-responsible-gambling__btn--primary {
  background-color: #FFC107; /* Accent yellow for primary actions */
  color: #333333; /* Dark text on yellow for contrast */
}

.page-responsible-gambling__btn--primary:hover {
  background-color: #e0a800;
  color: #1a1a1a;
}

.page-responsible-gambling__btn--secondary {
  background-color: #007BFF; /* Main blue for secondary actions */
  color: #ffffff;
}

.page-responsible-gambling__btn--secondary:hover {
  background-color: #0056b3;
}

.page-responsible-gambling__cta-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  color: #333333;
}

.page-responsible-gambling__cta-text a {
  color: #007BFF;
  font-weight: bold;
  text-decoration: none;
}

.page-responsible-gambling__cta-text a:hover {
  text-decoration: underline;
}

.page-responsible-gambling__image--full-width {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

  .page-responsible-gambling__hero-section,
  .page-responsible-gambling__section {
    padding: 40px 0;
  }

  .page-responsible-gambling__grid,
  .page-responsible-gambling__feature-list,
  .page-responsible-gambling__link-cards {
    grid-template-columns: 1fr;
  }
}

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

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

  .page-responsible-gambling__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}