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

/* Base styles for the page content */
.page-responsible-gambling-minor-protection {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #d5d1bc; /* Light text for dark background */
  background-color: #2A2E43; /* Main brand color */
}

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

/* Hero Section */
.page-responsible-gambling-minor-protection__hero-section {
  background: linear-gradient(135deg, #2A2E43 0%, #4a526b 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Accent color for hero text */
  border-bottom: 2px solid #FFD700;
}

.page-responsible-gambling-minor-protection__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Ensure high contrast */
  font-weight: bold;
}

.page-responsible-gambling-minor-protection__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0; /* Lighter text for subtitle */
}

/* Content Sections */
.page-responsible-gambling-minor-protection__content-section {
  padding: 60px 0;
  background-color: #2A2E43;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-responsible-gambling-minor-protection__content-section--alt {
  background-color: #383d54; /* Slightly lighter shade of main color */
}

.page-responsible-gambling-minor-protection__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  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: #FFD700;
  border-radius: 2px;
}

.page-responsible-gambling-minor-protection__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #d5d1bc;
  text-align: justify;
}

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

.page-responsible-gambling-minor-protection__feature-item {
  background-color: #383d54;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-minor-protection__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-minor-protection__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-responsible-gambling-minor-protection__feature-text {
  font-size: 1em;
  color: #b0afae;
}

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

.page-responsible-gambling-minor-protection__list li {
  background-color: #383d54;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #d5d1bc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

/* Buttons */
.page-responsible-gambling-minor-protection__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  text-align: center;
}

.page-responsible-gambling-minor-protection__btn--primary {
  background-color: #FFD700;
  color: #2A2E43; /* Dark text for accent background */
  border: 2px solid #FFD700;
}

.page-responsible-gambling-minor-protection__btn--primary:hover {
  background-color: #e6c200;
  color: #1a1e33;
  transform: translateY(-3px);
}

.page-responsible-gambling-minor-protection__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-responsible-gambling-minor-protection__btn--secondary:hover {
  background-color: #FFD700;
  color: #2A2E43;
  transform: translateY(-3px);
}

/* Image Styling */
.page-responsible-gambling-minor-protection__image-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-responsible-gambling-minor-protection__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Conclusion Section */
.page-responsible-gambling-minor-protection__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #4a526b 0%, #2A2E43 100%);
  border-top: 2px solid #FFD700;
}

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

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

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

  .page-responsible-gambling-minor-protection__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-responsible-gambling-minor-protection__btn {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .page-responsible-gambling-minor-protection__btn--secondary {
    margin-left: 0;
  }
}

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

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

  .page-responsible-gambling-minor-protection__hero-section,
  .page-responsible-gambling-minor-protection__content-section,
  .page-responsible-gambling-minor-protection__conclusion-section {
    padding: 40px 0;
  }
}