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

.page-responsible-gambling-addiction-identification {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-responsible-gambling-addiction-identification__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gambling-addiction-identification__hero {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-addiction-identification__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(20deg);
    z-index: 0;
}

.page-responsible-gambling-addiction-identification__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #fff;
}

.page-responsible-gambling-addiction-identification__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #eee;
}

.page-responsible-gambling-addiction-identification__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling-addiction-identification__section:nth-child(even) {
    background-color: #f0f8ff; /* Light blue tint */
}

.page-responsible-gambling-addiction-identification__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-responsible-gambling-addiction-identification__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-responsible-gambling-addiction-identification__subsection-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.page-responsible-gambling-addiction-identification__list,
.page-responsible-gambling-addiction-identification__numbered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-responsible-gambling-addiction-identification__numbered-list {
    list-style-type: decimal;
}

.page-responsible-gambling-addiction-identification__list li,
.page-responsible-gambling-addiction-identification__numbered-list li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.page-responsible-gambling-addiction-identification__list li strong {
    color: #007bff;
}

.page-responsible-gambling-addiction-identification__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
    border: 2px solid transparent;
}

.page-responsible-gambling-addiction-identification__btn--primary {
    background-color: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.page-responsible-gambling-addiction-identification__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #fff;
}

.page-responsible-gambling-addiction-identification__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.page-responsible-gambling-addiction-identification__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-responsible-gambling-addiction-identification__cta-group {
    text-align: center;
    margin-top: 40px;
}

.page-responsible-gambling-addiction-identification__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gambling-addiction-identification__hero-title {
        font-size: 2em;
    }

    .page-responsible-gambling-addiction-identification__hero-subtitle {
        font-size: 1em;
    }

    .page-responsible-gambling-addiction-identification__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-addiction-identification__subsection-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling-addiction-identification__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-addiction-identification__hero {
        padding: 60px 0;
    }

    .page-responsible-gambling-addiction-identification__hero-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-addiction-identification__section {
        padding: 40px 0;
    }

    .page-responsible-gambling-addiction-identification__section-title {
        font-size: 1.6em;
    }

    .page-responsible-gambling-addiction-identification__btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
    .page-responsible-gambling-addiction-identification__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}