/* style/safety-responsible-gaming-data-protection.css */

.page-safety-responsible-gaming-data-protection {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0D1B2A; /* Main dark background */
}

.page-safety-responsible-gaming-data-protection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-safety-responsible-gaming-data-protection__hero-section {
  background: linear-gradient(135deg, #0D1B2A 0%, #2a3a4c 100%); /* Darker gradient for hero */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-safety-responsible-gaming-data-protection__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.page-safety-responsible-gaming-data-protection__hero-subtitle {
  font-size: 1.3em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-safety-responsible-gaming-data-protection__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-safety-responsible-gaming-data-protection__content-section {
  padding: 60px 0;
}

.page-safety-responsible-gaming-data-protection__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
}

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

.page-safety-responsible-gaming-data-protection__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-safety-responsible-gaming-data-protection__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-safety-responsible-gaming-data-protection__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-safety-responsible-gaming-data-protection__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-safety-responsible-gaming-data-protection__list li strong {
  color: #FFD700;
}

.page-safety-responsible-gaming-data-protection__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-safety-responsible-gaming-data-protection__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-safety-responsible-gaming-data-protection__contact-link:hover {
  text-decoration: underline;
}

.page-safety-responsible-gaming-data-protection__cta-section {
  background-color: #1A2E40; /* Slightly lighter dark background for CTA */
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.page-safety-responsible-gaming-data-protection__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-safety-responsible-gaming-data-protection__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-safety-responsible-gaming-data-protection__cta-text {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 40px;
}

.page-safety-responsible-gaming-data-protection__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-safety-responsible-gaming-data-protection__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-safety-responsible-gaming-data-protection__button--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #0D1B2A; /* Dark text on gold button */
}

.page-safety-responsible-gaming-data-protection__button--primary:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-safety-responsible-gaming-data-protection__button--secondary {
  background-color: #0D1B2A; /* Dark background for secondary button */
  color: #FFD700; /* Gold text on dark button */
  border: 2px solid #FFD700;
}

.page-safety-responsible-gaming-data-protection__button--secondary:hover {
  background-color: #1A2E40; /* Slightly lighter dark on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-safety-responsible-gaming-data-protection__cta-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-safety-responsible-gaming-data-protection__hero-title {
    font-size: 2.5em;
  }

  .page-safety-responsible-gaming-data-protection__hero-subtitle {
    font-size: 1.1em;
  }

  .page-safety-responsible-gaming-data-protection__section-title {
    font-size: 2em;
  }

  .page-safety-responsible-gaming-data-protection__sub-section-title {
    font-size: 1.5em;
  }

  .page-safety-responsible-gaming-data-protection__paragraph,
  .page-safety-responsible-gaming-data-protection__list li {
    font-size: 1em;
  }

  .page-safety-responsible-gaming-data-protection__cta-title {
    font-size: 2em;
  }

  .page-safety-responsible-gaming-data-protection__cta-text {
    font-size: 1em;
  }

  .page-safety-responsible-gaming-data-protection__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-safety-responsible-gaming-data-protection__button {
    width: 80%;
    margin: 0 auto;
  }
}

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

  .page-safety-responsible-gaming-data-protection__section-title {
    font-size: 1.8em;
  }

  .page-safety-responsible-gaming-data-protection__sub-section-title {
    font-size: 1.3em;
  }

  .page-safety-responsible-gaming-data-protection__cta-title {
    font-size: 1.8em;
  }

  .page-safety-responsible-gaming-data-protection__button {
    font-size: 1em;
    padding: 12px 25px;
  }
}