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

.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, #0A192F 0%, #1a3a60 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for title */
}

.page-responsible-gambling-minor-protection__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    line-height: 1.2;
}

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

.page-responsible-gambling-minor-protection__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
}

.page-responsible-gambling-minor-protection__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-responsible-gambling-minor-protection__section {
    padding: 80px 0;
    background-color: #0A192F;
    color: #f5e6d0;
}

.page-responsible-gambling-minor-protection__section--alt {
    background-color: #1a2b47; /* Slightly lighter dark blue for contrast */
}

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

.page-responsible-gambling-minor-protection__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-responsible-gambling-minor-protection__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-responsible-gambling-minor-protection__text-content {
    flex: 1;
    font-size: 1.1em;
}

.page-responsible-gambling-minor-protection__text-content p {
    margin-bottom: 20px;
}

.page-responsible-gambling-minor-protection__image-wrapper {
    flex: 1;
    text-align: center;
}

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

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

.page-responsible-gambling-minor-protection__grid-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #FFD700;
}

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

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

.page-responsible-gambling-minor-protection__grid-item p {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-responsible-gambling-minor-protection__grid-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
}

.page-responsible-gambling-minor-protection__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

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

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

.page-responsible-gambling-minor-protection__call-to-action {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
    color: #f5e6d0;
    border-top: 2px solid #FFD700;
}

.page-responsible-gambling-minor-protection__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #c0c0c0;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-minor-protection__title {
        font-size: 2.8em;
    }
    .page-responsible-gambling-minor-protection__subtitle {
        font-size: 1.2em;
    }
    .page-responsible-gambling-minor-protection__section-title {
        font-size: 2em;
    }
    .page-responsible-gambling-minor-protection__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-responsible-gambling-minor-protection__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-responsible-gambling-minor-protection__image-wrapper {
        margin-top: 30px;
    }
    .page-responsible-gambling-minor-protection__text-content {
        order: 2; /* Ensure text comes after image on reverse */
    }
    .page-responsible-gambling-minor-protection__content-wrapper--reverse .page-responsible-gambling-minor-protection__text-content {
        order: 1;
    }
    .page-responsible-gambling-minor-protection__content-wrapper--reverse .page-responsible-gambling-minor-protection__image-wrapper {
        order: 2;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-minor-protection__hero,
    .page-responsible-gambling-minor-protection__section,
    .page-responsible-gambling-minor-protection__call-to-action {
        padding: 60px 0;
    }
    .page-responsible-gambling-minor-protection__title {
        font-size: 2.2em;
    }
    .page-responsible-gambling-minor-protection__subtitle {
        font-size: 1em;
    }
    .page-responsible-gambling-minor-protection__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-responsible-gambling-minor-protection__grid {
        grid-template-columns: 1fr;
    }
    .page-responsible-gambling-minor-protection__cta-text {
        font-size: 1.1em;
    }
    .page-responsible-gambling-minor-protection__grid-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-minor-protection__title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-minor-protection__subtitle {
        font-size: 0.9em;
    }
    .page-responsible-gambling-minor-protection__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling-minor-protection__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-minor-protection__text-content,
    .page-responsible-gambling-minor-protection__list {
        font-size: 0.95em;
    }
    .page-responsible-gambling-minor-protection__cta-text {
        font-size: 1em;
    }
}