/* style/responsible-gambling-minor-protection.css */
.page-responsible-gambling-minor-protection {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

.page-responsible-gambling-minor-protection__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #300A52 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
}

.page-responsible-gambling-minor-protection__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
}

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

.page-responsible-gambling-minor-protection__content-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-responsible-gambling-minor-protection__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-responsible-gambling-minor-protection__subsection-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-responsible-gambling-minor-protection__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f5e6d0;
}

.page-responsible-gambling-minor-protection__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #f5e6d0;
}

.page-responsible-gambling-minor-protection__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

.page-responsible-gambling-minor-protection__grid-item {
    background-color: #1a2a47; /* Slightly lighter dark blue for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.page-responsible-gambling-minor-protection__grid-item p {
    color: #f5e6d0;
    font-size: 1em;
    flex-grow: 1;
}

.page-responsible-gambling-minor-protection__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

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

.page-responsible-gambling-minor-protection__grid-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

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

.page-responsible-gambling-minor-protection__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

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

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

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

.page-responsible-gambling-minor-protection .highlight {
    color: #FFD700;
}

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

    .page-responsible-gambling-minor-protection__hero-subtitle,
    .page-responsible-gambling-minor-protection__paragraph,
    .page-responsible-gambling-minor-protection__list li {
        font-size: 1em;
    }

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

    .page-responsible-gambling-minor-protection__subsection-title {
        font-size: 1.7em;
    }

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

    .page-responsible-gambling-minor-protection__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

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

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

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