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

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

.page-responsible-gambling__hero-section {
  background: linear-gradient(135deg, #1A2C42 0%, #3a5c80 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-responsible-gambling__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E0B147; /* Accent color for highlight */
}

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

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

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

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

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

.page-responsible-gambling__subsection-title {
  font-size: 1.6em;
  color: #1A2C42;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-responsible-gambling__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

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

.page-responsible-gambling__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

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

.page-responsible-gambling__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.page-responsible-gambling__list--columns li {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-responsible-gambling__list--columns li:hover {
  transform: translateY(-5px);
}

.page-responsible-gambling__button {
  display: inline-block;
  background-color: #E0B147; /* Accent color */
  color: #1A2C42; /* Dark text for contrast */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-responsible-gambling__button:hover {
  background-color: #c99a38; /* Slightly darker accent */
  transform: translateY(-2px);
}

.page-responsible-gambling__button--primary {
  background-color: #1A2C42; /* Main color for primary CTA */
  color: #ffffff;
  margin-right: 15px;
}

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

.page-responsible-gambling__tool-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.page-responsible-gambling__tool-item p {
  margin-bottom: 15px;
}

.page-responsible-gambling__faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.page-responsible-gambling__faq-question {
  font-size: 1.4em;
  color: #1A2C42;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-responsible-gambling__faq-answer {
  color: #555;
}

.page-responsible-gambling__faq-answer a {
  color: #E0B147;
  text-decoration: none;
  font-weight: bold;
}

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

.page-responsible-gambling__cta-bottom {
  background-color: #1A2C42;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-responsible-gambling__cta-bottom .page-responsible-gambling__section-title {
  color: #E0B147;
}

.page-responsible-gambling__cta-bottom .page-responsible-gambling__section-title::after {
  background-color: #E0B147;
}

.page-responsible-gambling__cta-bottom p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

.page-responsible-gambling__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

  .page-responsible-gambling__subsection-title {
    font-size: 1.4em;
  }

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

  .page-responsible-gambling__button {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .page-responsible-gambling__button--primary {
    margin-bottom: 15px;
  }

  .page-responsible-gambling__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

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

  .page-responsible-gambling__subsection-title {
    font-size: 1.2em;
  }

  .page-responsible-gambling__hero-description,
  .page-responsible-gambling__cta-bottom p {
    font-size: 1em;
  }

  .page-responsible-gambling__button {
    padding: 10px 20px;
  }
}