/* style/responsible-gambling.css */
.page-responsible-gambling {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-responsible-gambling__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Primary brand color gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

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

.page-responsible-gambling__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-responsible-gambling__section--dark {
  background-color: #f1f7fc; /* Lighter shade of primary */
  color: #333;
}

.page-responsible-gambling__section--alt-bg {
  background-color: #e6f0fa; /* Another light background */
}

.page-responsible-gambling__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-responsible-gambling__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFC107; /* Secondary brand color */
  border-radius: 2px;
}

.page-responsible-gambling h3 {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-responsible-gambling p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #495057;
}

.page-responsible-gambling__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  margin: 10px 10px 10px 0;
}

.page-responsible-gambling__btn--primary {
  background-color: #FFC107; /* Secondary brand color */
  color: #333; /* Dark text for contrast */
  border: 2px solid #FFC107;
}

.page-responsible-gambling__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #fff;
}

.page-responsible-gambling__btn--secondary {
  background-color: transparent;
  color: #007BFF; /* Primary brand color */
  border: 2px solid #007BFF;
}

.page-responsible-gambling__btn--secondary:hover {
  background-color: #007BFF;
  color: #fff;
}

.page-responsible-gambling__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

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

.page-responsible-gambling__feature-item:hover {
  transform: translateY(-10px);
}

.page-responsible-gambling__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-responsible-gambling__feature-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

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

.page-responsible-gambling__detail-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-responsible-gambling__detail-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-responsible-gambling__detail-description {
  font-size: 1em;
  color: #555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-responsible-gambling__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-responsible-gambling__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #495057;
}

.page-responsible-gambling__list--commitment {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.page-responsible-gambling__list--commitment li {
  position: relative;
  padding-left: 30px;
}

.page-responsible-gambling__list--commitment li::before {
  content: '✔';
  color: #FFC107; /* Secondary brand color */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-responsible-gambling__numbered-list {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-responsible-gambling__numbered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #495057;
}

.page-responsible-gambling__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling__image--large {
  max-width: 900px;
}

.page-responsible-gambling__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dashed #ddd;
}

.page-responsible-gambling__cta-bottom p {
  font-size: 1.4em;
  font-weight: 600;
  color: #007BFF;
  margin-bottom: 25px;
}

/* 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 h3 {
    font-size: 1.5em;
  }
  .page-responsible-gambling p, .page-responsible-gambling__list li, .page-responsible-gambling__numbered-list li {
    font-size: 1em;
  }
  .page-responsible-gambling__features {
    flex-direction: column;
    align-items: center;
  }
  .page-responsible-gambling__feature-item {
    flex: 1 1 100%;
    max-width: 400px;
  }
  .page-responsible-gambling__detail-list {
    grid-template-columns: 1fr;
  }
  .page-responsible-gambling__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }
  .page-responsible-gambling__cta-bottom p {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling__hero-title {
    font-size: 2em;
  }
  .page-responsible-gambling__section-title {
    font-size: 1.8em;
  }
  .page-responsible-gambling__hero-description {
    font-size: 1em;
  }
  .page-responsible-gambling__btn--primary, .page-responsible-gambling__btn--secondary {
    width: 100%;
    margin-right: 0;
  }
  .page-responsible-gambling__cta-bottom .page-responsible-gambling__btn {
    display: block;
    margin: 10px auto;
  }
}