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

:root {
    --page-responsible-gambling-harm-identification-primary-color: #1A2C50;
    --page-responsible-gambling-harm-identification-secondary-color: #FFD700;
    --page-responsible-gambling-harm-identification-text-dark: #333333;
    --page-responsible-gambling-harm-identification-text-light: #FFFFFF;
    --page-responsible-gambling-harm-identification-bg-light: #F8F8F8;
    --page-responsible-gambling-harm-identification-bg-dark: #1A2C50;
    --page-responsible-gambling-harm-identification-card-bg: #FFFFFF;
    --page-responsible-gambling-harm-identification-border-color: #E0E0E0;
}

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

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

.page-responsible-gambling-harm-identification__hero {
    background: linear-gradient(135deg, var(--page-responsible-gambling-harm-identification-primary-color), #2A4070);
    color: var(--page-responsible-gambling-harm-identification-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.page-responsible-gambling-harm-identification__hero-content {
    max-width: 600px;
}

.page-responsible-gambling-harm-identification__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-responsible-gambling-harm-identification-secondary-color);
    line-height: 1.2;
}

.page-responsible-gambling-harm-identification__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-responsible-gambling-harm-identification__hero-button {
    display: inline-block;
    background-color: var(--page-responsible-gambling-harm-identification-secondary-color);
    color: var(--page-responsible-gambling-harm-identification-primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-responsible-gambling-harm-identification__hero-button:hover {
    background-color: #E0B300;
    transform: translateY(-2px);
}

.page-responsible-gambling-harm-identification__hero-image-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-responsible-gambling-harm-identification__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-harm-identification__section {
    padding: 60px 0;
    text-align: left;
}

.page-responsible-gambling-harm-identification__section:nth-of-type(even) {
    background-color: var(--page-responsible-gambling-harm-identification-bg-light);
}

.page-responsible-gambling-harm-identification__section-title {
    font-size: 2.5em;
    color: var(--page-responsible-gambling-harm-identification-primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-responsible-gambling-harm-identification__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-responsible-gambling-harm-identification-secondary-color);
    border-radius: 2px;
}

.page-responsible-gambling-harm-identification__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

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

.page-responsible-gambling-harm-identification__sign-card,
.page-responsible-gambling-harm-identification__tool-card {
    background-color: var(--page-responsible-gambling-harm-identification-card-bg);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-responsible-gambling-harm-identification-secondary-color);
}

.page-responsible-gambling-harm-identification__sign-card:hover,
.page-responsible-gambling-harm-identification__tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling-harm-identification__card-title {
    font-size: 1.5em;
    color: var(--page-responsible-gambling-harm-identification-primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.page-responsible-gambling-harm-identification__sign-card ul,
.page-responsible-gambling-harm-identification__tool-card p {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1em;
    color: #555555;
}

.page-responsible-gambling-harm-identification__sign-card li {
    margin-bottom: 10px;
}

.page-responsible-gambling-harm-identification__assessment-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 20px;
    font-size: 1.1em;
    color: var(--page-responsible-gambling-harm-identification-text-dark);
}

.page-responsible-gambling-harm-identification__assessment-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    background-color: var(--page-responsible-gambling-harm-identification-card-bg);
    padding: 15px 20px;
    border-left: 4px solid var(--page-responsible-gambling-harm-identification-secondary-color);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling-harm-identification__tips-list {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-responsible-gambling-harm-identification__tips-list li {
    background-color: var(--page-responsible-gambling-harm-identification-card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    border-left: 5px solid var(--page-responsible-gambling-harm-identification-primary-color);
}

.page-responsible-gambling-harm-identification__tips-list li strong {
    color: var(--page-responsible-gambling-harm-identification-secondary-color);
    font-size: 1.1em;
}

.page-responsible-gambling-harm-identification__help-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 20px;
    font-size: 1.1em;
    color: var(--page-responsible-gambling-harm-identification-text-dark);
}

.page-responsible-gambling-harm-identification__help-list li {
    margin-bottom: 10px;
}

.page-responsible-gambling-harm-identification__button {
    display: inline-block;
    background-color: var(--page-responsible-gambling-harm-identification-primary-color);
    color: var(--page-responsible-gambling-harm-identification-text-light);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

.page-responsible-gambling-harm-identification__button:hover {
    background-color: #0F1F3D;
    transform: translateY(-2px);
}

.page-responsible-gambling-harm-identification__button--primary {
    background-color: var(--page-responsible-gambling-harm-identification-secondary-color);
    color: var(--page-responsible-gambling-harm-identification-primary-color);
}

.page-responsible-gambling-harm-identification__button--primary:hover {
    background-color: #E0B300;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-responsible-gambling-harm-identification__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-responsible-gambling-harm-identification__hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gambling-harm-identification__hero-description {
        font-size: 1.1em;
    }

    .page-responsible-gambling-harm-identification__hero-image-container {
        order: -1; /* Move image above text on smaller screens */
        margin-bottom: 30px;
    }

    .page-responsible-gambling-harm-identification__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling-harm-identification__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-harm-identification__hero-title {
        font-size: 2em;
    }

    .page-responsible-gambling-harm-identification__hero-description {
        font-size: 1em;
    }

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

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

    .page-responsible-gambling-harm-identification__section p,
    .page-responsible-gambling-harm-identification__assessment-list li,
    .page-responsible-gambling-harm-identification__tips-list li,
    .page-responsible-gambling-harm-identification__help-list li {
        font-size: 0.95em;
    }

    .page-responsible-gambling-harm-identification__card-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-harm-identification__hero-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-harm-identification__hero-description {
        font-size: 0.95em;
    }

    .page-responsible-gambling-harm-identification__hero-button,
    .page-responsible-gambling-harm-identification__button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-responsible-gambling-harm-identification__section-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling-harm-identification__sign-card,
    .page-responsible-gambling-harm-identification__tool-card {
        padding: 20px;
    }
}