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

:root {
    --page-primary-color: #1A2E44;
    --page-accent-color: #FFD700;
    --page-text-light: #F8F8F8;
    --page-text-dark: #333333;
    --page-background-light: #FFFFFF;
    --page-background-dark: #122030;
    --page-button-hover: #e6c200;
}

.page-responsible-gambling-minor-protection {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

.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, var(--page-primary-color) 0%, #3a4f66 100%);
    color: var(--page-text-light);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-minor-protection__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-responsible-gambling-minor-protection__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--page-text-light);
}

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

.page-responsible-gambling-minor-protection__content-section {
    padding: 60px 0;
    background-color: var(--page-background-light);
}

.page-responsible-gambling-minor-protection__section-title {
    font-size: 2.2em;
    color: var(--page-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 3px solid var(--page-accent-color);
    padding-bottom: 10px;
}

.page-responsible-gambling-minor-protection__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-text-dark);
}

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

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

.page-responsible-gambling-minor-protection__feature-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-responsible-gambling-minor-protection__feature-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-responsible-gambling-minor-protection__feature-item p {
    font-size: 1em;
    color: var(--page-text-dark);
}

.page-responsible-gambling-minor-protection__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-minor-protection__list {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: var(--page-text-dark);
}

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

.page-responsible-gambling-minor-protection__image-full-width {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

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

.page-responsible-gambling-minor-protection__button--primary {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    border: 2px solid var(--page-accent-color);
}

.page-responsible-gambling-minor-protection__button--primary:hover {
    background-color: var(--page-button-hover);
    transform: translateY(-2px);
}

.page-responsible-gambling-minor-protection__button--secondary {
    background-color: transparent;
    color: var(--page-primary-color);
    border: 2px solid var(--page-primary-color);
    margin-left: 20px;
}

.page-responsible-gambling-minor-protection__button--secondary:hover {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    transform: translateY(-2px);
}

.page-responsible-gambling-minor-protection__icon-small {
    display: block;
    margin: 20px auto;
    max-width: 80px;
    height: auto;
}

/* Responsive adjustments */
@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: 1.8em;
    }

    .page-responsible-gambling-minor-protection__content-section p,
    .page-responsible-gambling-minor-protection__list {
        font-size: 1em;
    }

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

    .page-responsible-gambling-minor-protection__button {
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
    }
    .page-responsible-gambling-minor-protection__button--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.5em;
    }
    .page-responsible-gambling-minor-protection__hero-section {
        padding: 60px 0 30px;
    }
}