/* style/responsible-gambling-minor-protection.css */
.page-responsible-gambling-minor-protection {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #0A2239; /* Deep blue for text */
    background-color: #f8f8f8;
}

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

.page-responsible-gambling-minor-protection__hero {
    background: linear-gradient(135deg, #0A2239, #2A4A69); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-minor-protection__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-responsible-gambling-minor-protection__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E0B44B; /* Golden yellow for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-responsible-gambling-minor-protection__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #eee;
}

.page-responsible-gambling-minor-protection__section--alt {
    background-color: #F0F4F8; /* Lighter background for contrast */
}

.page-responsible-gambling-minor-protection__section-title {
    font-size: 2.2em;
    color: #0A2239;
    margin-bottom: 30px;
    text-align: center;
    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: #E0B44B;
    border-radius: 2px;
}

.page-responsible-gambling-minor-protection p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.page-responsible-gambling-minor-protection strong {
    color: #0A2239;
}

.page-responsible-gambling-minor-protection__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-responsible-gambling-minor-protection__list li {
    background-color: #f9f9f9;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #E0B44B;
    border-radius: 5px;
    font-size: 1.05em;
    color: #222;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling-minor-protection__list li strong {
    color: #0A2239;
}

.page-responsible-gambling-minor-protection__image-inline {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-minor-protection__cta-section {
    background-color: #0A2239; /* Deep blue background for CTA */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-responsible-gambling-minor-protection__cta-title {
    font-size: 2.5em;
    color: #E0B44B;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-responsible-gambling-minor-protection__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-responsible-gambling-minor-protection__cta-button {
    display: inline-block;
    background-color: #E0B44B; /* Golden yellow button */
    color: #0A2239;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-minor-protection__cta-button:hover {
    background-color: #F0C45B; /* Lighter golden on hover */
    transform: translateY(-3px);
}

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

    .page-responsible-gambling-minor-protection__subtitle,
    .page-responsible-gambling-minor-protection p,
    .page-responsible-gambling-minor-protection__list li {
        font-size: 1em;
    }

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

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

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

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

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

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

    .page-responsible-gambling-minor-protection__hero-image {
        margin-top: 20px;
    }
}