/* style/responsible-gambling-gambling-addiction-prevention.css */

:root {
    --primary-color: #007bff;
    --secondary-color: #28a745;
    --text-dark: #333;
    --text-light: #fff;
    --background-light: #f8f9fa;
    --background-dark: #343a40;
    --border-color: #dee2e6;
}

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

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

.page-responsible-gambling-gambling-addiction-prevention .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); /* Slightly darker primary blend */
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-responsible-gambling-gambling-addiction-prevention .hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-gambling-addiction-prevention .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-responsible-gambling-gambling-addiction-prevention .hero-section .btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-gambling-addiction-prevention .hero-section .btn-primary:hover {
    background-color: #218838; /* Darker secondary */
    transform: translateY(-2px);
}

.page-responsible-gambling-gambling-addiction-prevention .hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%; /* Adjusted for better visibility */
    max-width: 400px;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

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

.page-responsible-gambling-gambling-addiction-prevention .text-block {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.page-responsible-gambling-gambling-addiction-prevention .text-block:last-of-type {
    margin-bottom: 0;
}

.page-responsible-gambling-gambling-addiction-prevention h2 {
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.page-responsible-gambling-gambling-addiction-prevention h3 {
    color: #0056b3; /* Darker primary for headings */
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-responsible-gambling-gambling-addiction-prevention p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555;
}

.page-responsible-gambling-gambling-addiction-prevention ul {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-responsible-gambling-gambling-addiction-prevention ul li {
    margin-bottom: 8px;
    color: #444;
}

.page-responsible-gambling-gambling-addiction-prevention .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-gambling-addiction-prevention .inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s ease;
}

.page-responsible-gambling-gambling-addiction-prevention .inline-link:hover {
    color: #0056b3;
}

.page-responsible-gambling-gambling-addiction-prevention .cta-block {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.page-responsible-gambling-gambling-addiction-prevention .cta-block h2 {
    color: var(--text-light);
    font-size: 2.5em;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
}

.page-responsible-gambling-gambling-addiction-prevention .cta-block p {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-responsible-gambling-gambling-addiction-prevention .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-responsible-gambling-gambling-addiction-prevention .cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.05em;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-gambling-addiction-prevention .cta-buttons .btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.page-responsible-gambling-gambling-addiction-prevention .cta-buttons .btn-primary:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
}

.page-responsible-gambling-gambling-addiction-prevention .cta-buttons .btn-secondary {
    background-color: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--text-light);
}

.page-responsible-gambling-gambling-addiction-prevention .cta-buttons .btn-secondary:hover {
    background-color: #e2e6ea;
    color: #0056b3;
    transform: translateY(-2px);
}

.page-responsible-gambling-gambling-addiction-prevention .cta-buttons .btn-download {
    background-color: #ffc107; /* A bright, attention-grabbing color */
    color: var(--text-dark);
    border: 2px solid #ffc107;
}

.page-responsible-gambling-gambling-addiction-prevention .cta-buttons .btn-download:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gambling-gambling-addiction-prevention .hero-section {
        padding: 60px 0;
    }

    .page-responsible-gambling-gambling-addiction-prevention .hero-section h1 {
        font-size: 2.5em;
    }

    .page-responsible-gambling-gambling-addiction-prevention .hero-section p {
        font-size: 1em;
    }

    .page-responsible-gambling-gambling-addiction-prevention .hero-image {
        width: 50%;
        max-width: 300px;
        position: static;
        margin-top: 30px;
        opacity: 0.8;
    }

    .page-responsible-gambling-gambling-addiction-prevention h2 {
        font-size: 1.8em;
    }

    .page-responsible-gambling-gambling-addiction-prevention h3 {
        font-size: 1.4em;
    }

    .page-responsible-gambling-gambling-addiction-prevention .text-block {
        padding: 20px;
    }

    .page-responsible-gambling-gambling-addiction-prevention .cta-block {
        padding: 30px 20px;
    }

    .page-responsible-gambling-gambling-addiction-prevention .cta-block h2 {
        font-size: 2em;
    }

    .page-responsible-gambling-gambling-addiction-prevention .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-responsible-gambling-gambling-addiction-prevention .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-gambling-addiction-prevention .hero-section h1 {
        font-size: 2em;
    }

    .page-responsible-gambling-gambling-addiction-prevention .hero-section .btn-primary {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-responsible-gambling-gambling-addiction-prevention h2 {
        font-size: 1.5em;
    }

    .page-responsible-gambling-gambling-addiction-prevention h3 {
        font-size: 1.2em;
    }

    .page-responsible-gambling-gambling-addiction-prevention p {
        font-size: 0.95em;
    }

    .page-responsible-gambling-gambling-addiction-prevention .cta-block h2 {
        font-size: 1.8em;
    }
}