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

/* Variables for consistent styling */
:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-dark: #333;
    --text-light: #f8f9fa;
    --background-light: #f8f9fa;
    --background-dark: #0056b3; /* Darker shade of primary for contrast */
    --border-color: #dee2e6;
}

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

.page-responsible-gambling-minor-protection .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-responsible-gambling-minor-protection .hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--background-dark)); /* Using darker primary for gradient */
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-minor-protection .hero-section h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-responsible-gambling-minor-protection .hero-section h1 .brand-link {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.page-responsible-gambling-minor-protection .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    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: var(--secondary-color);
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
}

.page-responsible-gambling-minor-protection .btn-primary:hover {
    background-color: #e6b300; /* Slightly darker secondary */
    transform: translateY(-2px);
}

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

.page-responsible-gambling-minor-protection .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.page-responsible-gambling-minor-protection .content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-responsible-gambling-minor-protection .content-section h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-responsible-gambling-minor-protection .content-section h2::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 .content-section h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-responsible-gambling-minor-protection .content-section p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-responsible-gambling-minor-protection .content-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.page-responsible-gambling-minor-protection .brand-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling-minor-protection .brand-link:hover {
    text-decoration: underline;
}

.page-responsible-gambling-minor-protection .image-container {
    text-align: center;
    margin-bottom: 40px;
}

.page-responsible-gambling-minor-protection .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-responsible-gambling-minor-protection .feature-item {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-responsible-gambling-minor-protection .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-responsible-gambling-minor-protection .feature-item p {
    color: #555;
}

.page-responsible-gambling-minor-protection .link-text {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-responsible-gambling-minor-protection .link-text:hover {
    color: var(--secondary-color);
}

.page-responsible-gambling-minor-protection .cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.page-responsible-gambling-minor-protection .cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-responsible-gambling-minor-protection .cta-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-responsible-gambling-minor-protection .cta-section .brand-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling-minor-protection .cta-section .brand-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .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 h2 {
        font-size: 1.8em;
    }

    .page-responsible-gambling-minor-protection .content-section h3 {
        font-size: 1.3em;
    }

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

    .page-responsible-gambling-minor-protection .cta-section h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-minor-protection .hero-section {
        padding: 60px 0;
    }

    .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 {
        padding: 40px 0;
    }
}