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

:root {
    --primary-color: #0A2239;
    --secondary-color: #FFD700;
    --text-on-primary: #FFFFFF;
    --text-on-secondary: #0A2239; /* Dark text for light yellow background */
    --light-background: #F8F8F8;
    --dark-background: #0A2239;
    --accent-color: #E74C3C; /* A touch of red for alerts/emphasis */
}

.page-responsible-gambling-minor-protection {
    font-family: 'Arial', sans-serif;
    color: var(--primary-color);
    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 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495E 100%); /* Darker blue gradient */
    color: var(--text-on-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-minor-protection__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-responsible-gambling-minor-protection__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-on-primary);
}

.page-responsible-gambling-minor-protection__hero-image-wrapper {
    max-width: 600px;
    margin: 40px auto 0;
}

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

.page-responsible-gambling-minor-protection__section {
    padding: 60px 0;
    background-color: var(--light-background);
    border-bottom: 1px solid #E0E0E0;
}

.page-responsible-gambling-minor-protection__section:nth-of-type(even) {
    background-color: #FFFFFF;
}

.page-responsible-gambling-minor-protection__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-responsible-gambling-minor-protection__sub-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

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

.page-responsible-gambling-minor-protection ul,
.page-responsible-gambling-minor-protection ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-responsible-gambling-minor-protection ul li,
.page-responsible-gambling-minor-protection ol li {
    margin-bottom: 10px;
    color: #333;
}

.page-responsible-gambling-minor-protection strong {
    color: var(--primary-color);
}

.page-responsible-gambling-minor-protection__image-row {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-responsible-gambling-minor-protection__content-image {
    width: 100%;
    max-width: 48%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.page-responsible-gambling-minor-protection__image-wrapper .page-responsible-gambling-minor-protection__content-image {
    max-width: 700px;
}

.page-responsible-gambling-minor-protection__button-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: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-minor-protection__btn--primary {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
}

.page-responsible-gambling-minor-protection__btn--primary:hover {
    background-color: #E0B500; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-responsible-gambling-minor-protection__btn--secondary {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

.page-responsible-gambling-minor-protection__btn--secondary:hover {
    background-color: #1A3A5D; /* Slightly lighter primary */
    transform: translateY(-2px);
}

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

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

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

    .page-responsible-gambling-minor-protection__sub-title {
        font-size: 1.4em;
    }

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

    .page-responsible-gambling-minor-protection__image-row {
        flex-direction: column;
    }

    .page-responsible-gambling-minor-protection__btn {
        width: 100%;
        max-width: 300px;
    }
}

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

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

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

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