.page-responsible-gambling {
  font-family: Arial, 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 {
  background: linear-gradient(135deg, #0A2463 0%, #304E85 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-responsible-gambling__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.15;
  z-index: 0;
}

.page-responsible-gambling__hero-image {
  width: 400px;
  height: auto;
}

.page-responsible-gambling__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling__section:nth-of-type(even) {
  background-color: #f0f4f8;
}

.page-responsible-gambling__section-title {
  font-size: 2.5em;
  color: #0A2463;
  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;
  border-radius: 2px;
}

.page-responsible-gambling__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-responsible-gambling__paragraph--center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-responsible-gambling__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555;
}

.page-responsible-gambling__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
}

.page-responsible-gambling__list--commitment .page-responsible-gambling__list-item::before {
  content: '★';
  color: #0A2463;
}

.page-responsible-gambling__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-responsible-gambling__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-responsible-gambling__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-responsible-gambling__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(10, 36, 99, 0.3);
}

.page-responsible-gambling__btn--secondary:hover {
  background-color: #071a47;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.4);
}

.page-responsible-gambling__btn--link {
  background: none;
  color: #0A2463;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-responsible-gambling__btn--link:hover {
  color: #FFD700;
  text-decoration: none;
}

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

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

.page-responsible-gambling__card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0A2463;
}

.page-responsible-gambling__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-responsible-gambling__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-responsible-gambling__card-description {
  font-size: 1em;
  color: #666;
}

.page-responsible-gambling__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-responsible-gambling__help-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: border-color 0.3s ease;
}

.page-responsible-gambling__help-card:hover {
  border-color: #FFD700;
}

.page-responsible-gambling__help-card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-responsible-gambling__help-card-text {
  color: #666;
  margin-bottom: 20px;
}

.page-responsible-gambling__commitment {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 0;
  background-color: #0A2463;
  color: #ffffff;
}

.page-responsible-gambling__commitment .page-responsible-gambling__container {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.page-responsible-gambling__commitment-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-responsible-gambling__commitment-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__commitment .page-responsible-gambling__section-title {
  color: #FFD700;
}

.page-responsible-gambling__commitment .page-responsible-gambling__section-title::after {
  background-color: #ffffff;
}

.page-responsible-gambling__commitment .page-responsible-gambling__paragraph {
  color: #e0e0e0;
}

.page-responsible-gambling__commitment .page-responsible-gambling__list-item {
  color: #e0e0e0;
}

.page-responsible-gambling__faq {
  padding: 60px 0;
}

.page-responsible-gambling__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

.page-responsible-gambling__faq-answer {
  font-size: 1em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gambling__hero-title {
    font-size: 2.8em;
  }
  .page-responsible-gambling__section-title {
    font-size: 2em;
  }
  .page-responsible-gambling__commitment {
    flex-direction: column;
  }
  .page-responsible-gambling__commitment .page-responsible-gambling__container {
    padding-right: 20px;
    padding-bottom: 40px;
  }
  .page-responsible-gambling__hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling__hero {
    padding: 60px 0;
  }
  .page-responsible-gambling__hero-title {
    font-size: 2.2em;
  }
  .page-responsible-gambling__hero-description {
    font-size: 1em;
  }
  .page-responsible-gambling__section {
    padding: 40px 0;
  }
  .page-responsible-gambling__section-title {
    font-size: 1.8em;
  }
  .page-responsible-gambling__grid, .page-responsible-gambling__help-resources {
    grid-template-columns: 1fr;
  }
  .page-responsible-gambling__card, .page-responsible-gambling__help-card {
    padding: 20px;
  }
  .page-responsible-gambling__card-title {
    font-size: 1.5em;
  }
  .page-responsible-gambling__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling__hero-title {
    font-size: 1.8em;
  }
  .page-responsible-gambling__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-responsible-gambling__section-title {
    font-size: 1.5em;
  }
  .page-responsible-gambling__list-item {
    font-size: 0.95em;
  }
}