/* style/responsible-gambling-minor-protection.css */

.page-responsible-gambling-minor-protection {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Hero Section */
.page-responsible-gambling-minor-protection__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling-minor-protection__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-responsible-gambling-minor-protection__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.page-responsible-gambling-minor-protection__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-minor-protection__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-responsible-gambling-minor-protection__hero-image {
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
  transition: transform 0.3s ease-in-out;
}

.page-responsible-gambling-minor-protection__hero-image:hover {
  transform: translateY(-5px);
}

/* Sections */
.page-responsible-gambling-minor-protection__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-responsible-gambling-minor-protection__section:last-of-type {
  border-bottom: none;
}

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

.page-responsible-gambling-minor-protection__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-responsible-gambling-minor-protection__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-responsible-gambling-minor-protection__section h3 {
  font-size: 1.8em;
  color: #0056b3;
  margin-bottom: 15px;
  text-align: center;
}

/* Grid Layouts */
.page-responsible-gambling-minor-protection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-responsible-gambling-minor-protection__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-minor-protection__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling-minor-protection__grid-item h3 {
  color: #007bff;
  margin-top: 0;
}

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

.page-responsible-gambling-minor-protection__policy-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-responsible-gambling-minor-protection__policy-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #ffc107;
}

.page-responsible-gambling-minor-protection__policy-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-responsible-gambling-minor-protection__policy-item h3 {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-responsible-gambling-minor-protection__policy-item p {
  font-size: 1em;
  color: #555;
  text-align: center;
}

/* List Styles */
.page-responsible-gambling-minor-protection__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-responsible-gambling-minor-protection__list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #ffc107;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
  transition: all 0.2s ease;
}

.page-responsible-gambling-minor-protection__list li:hover {
  border-left-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-responsible-gambling-minor-protection__list strong {
  color: #0056b3;
}

/* Call to Action Buttons */
.page-responsible-gambling-minor-protection__cta-group {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-responsible-gambling-minor-protection__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-minor-protection__btn--primary {
  background-color: #007bff;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-responsible-gambling-minor-protection__btn--primary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-responsible-gambling-minor-protection__btn--secondary {
  background-color: #ffc107;
  color: #333;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.page-responsible-gambling-minor-protection__btn--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.page-responsible-gambling-minor-protection__btn--tertiary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  box-shadow: none;
}

.page-responsible-gambling-minor-protection__btn--tertiary:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.page-responsible-gambling-minor-protection__report-image {
  max-width: 500px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gambling-minor-protection__title {
    font-size: 2.8em;
  }

  .page-responsible-gambling-minor-protection__subtitle {
    font-size: 1.1em;
  }

  .page-responsible-gambling-minor-protection__section-title {
    font-size: 2em;
  }

  .page-responsible-gambling-minor-protection__policy-item h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling-minor-protection__hero {
    padding: 60px 0;
  }

  .page-responsible-gambling-minor-protection__title {
    font-size: 2.2em;
  }

  .page-responsible-gambling-minor-protection__subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-responsible-gambling-minor-protection__hero-image {
    max-width: 100%;
  }

  .page-responsible-gambling-minor-protection__section {
    padding: 40px 0;
  }

  .page-responsible-gambling-minor-protection__section-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling-minor-protection__grid,
  .page-responsible-gambling-minor-protection__policy-grid {
    grid-template-columns: 1fr;
  }

  .page-responsible-gambling-minor-protection__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  .page-responsible-gambling-minor-protection__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling-minor-protection__container {
    padding: 0 15px;
  }

  .page-responsible-gambling-minor-protection__title {
    font-size: 1.8em;
  }

  .page-responsible-gambling-minor-protection__section-title {
    font-size: 1.5em;
  }

  .page-responsible-gambling-minor-protection__policy-item h3 {
    font-size: 1.2em;
  }

  .page-responsible-gambling-minor-protection__list li {
    font-size: 0.95em;
    padding: 15px 20px;
  }
}