/* style/responsible-gambling-minor-protection.css */
.page-responsible-gambling-minor-protection {
    font-family: Arial, sans-serif;
    color: #E5E5D1; /* Light text for dark background */
    line-height: 1.6;
    background-color: #1A1A2E;
}

.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, #1A1A2E, #3A3A5E);
    color: #E5E5D1;
    text-align: center;
    padding: 100px 0;
    border-bottom: 5px solid #E0B95B;
}

.page-responsible-gambling-minor-protection .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B95B; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-minor-protection .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-responsible-gambling-minor-protection .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-responsible-gambling-minor-protection .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
}

.page-responsible-gambling-minor-protection .btn-primary {
    background-color: #E0B95B;
    color: #1A1A2E;
    border: 2px solid #E0B95B;
}

.page-responsible-gambling-minor-protection .btn-primary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    transform: translateY(-3px);
}

.page-responsible-gambling-minor-protection .btn-secondary {
    background-color: transparent;
    color: #E0B95B;
    border: 2px solid #E0B95B;
}

.page-responsible-gambling-minor-protection .btn-secondary:hover {
    background-color: #E0B95B;
    color: #1A1A2E;
    transform: translateY(-3px);
}

.page-responsible-gambling-minor-protection .content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(224, 185, 91, 0.2);
}

.page-responsible-gambling-minor-protection .content-section h2 {
    font-size: 2.5em;
    color: #E0B95B;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-minor-protection .content-section h3 {
    font-size: 1.8em;
    color: #E0B95B;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-responsible-gambling-minor-protection .content-section ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E5E5D1;
}

.page-responsible-gambling-minor-protection .content-section ul li {
    margin-bottom: 8px;
}

.page-responsible-gambling-minor-protection .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-responsible-gambling-minor-protection .content-wrapper.reverse-order {
    flex-direction: row-reverse;
}

.page-responsible-gambling-minor-protection .text-content {
    flex: 1;
}

.page-responsible-gambling-minor-protection .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.page-responsible-gambling-minor-protection .grid-item {
    background-color: #2A2A4A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.page-responsible-gambling-minor-protection .grid-item h3 {
    color: #E0B95B;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-responsible-gambling-minor-protection .grid-item .grid-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-minor-protection .call-to-action-section {
    background-color: #1A1A2E;
    text-align: center;
    padding: 80px 0;
}

.page-responsible-gambling-minor-protection .call-to-action-section h2 {
    color: #E0B95B;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-responsible-gambling-minor-protection .call-to-action-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E5E5D1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-responsible-gambling-minor-protection .hero-section h1 {
        font-size: 2.8em;
    }
    .page-responsible-gambling-minor-protection .content-section h2 {
        font-size: 2em;
    }
    .page-responsible-gambling-minor-protection .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-responsible-gambling-minor-protection .content-wrapper.reverse-order {
        flex-direction: column;
    }
    .page-responsible-gambling-minor-protection .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-responsible-gambling-minor-protection .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-minor-protection .hero-section {
        padding: 80px 0;
    }
    .page-responsible-gambling-minor-protection .hero-section h1 {
        font-size: 2.2em;
    }
    .page-responsible-gambling-minor-protection .hero-section p {
        font-size: 1em;
    }
    .page-responsible-gambling-minor-protection .content-section {
        padding: 40px 0;
    }
    .page-responsible-gambling-minor-protection .content-section h2 {
        font-size: 1.8em;
    }
    .page-responsible-gambling-minor-protection .grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-minor-protection .hero-section h1 {
        font-size: 1.8em;
    }
    .page-responsible-gambling-minor-protection .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-responsible-gambling-minor-protection .content-section h3 {
        font-size: 1.4em;
    }
}