/* style/responsible-gambling-get-help.css */
.page-responsible-gambling-get-help {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0F1A2B; /* A slightly lighter dark blue for overall background */
}

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

.page-responsible-gambling-get-help__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #2C4A7C); /* Deeper blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-get-help__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling-get-help__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FF8C00; /* Orange for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-get-help__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #F0F0F0;
}

.page-responsible-gambling-get-help__content-section {
    padding: 60px 0;
    background-color: #0F1A2B;
}

.page-responsible-gambling-get-help__section-title {
    font-size: 2.5em;
    color: #FF8C00; /* Orange for main section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1A2B4C;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-get-help__sub-title {
    font-size: 1.8em;
    color: #F0F0F0;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FF8C00;
    padding-left: 15px;
}

.page-responsible-gambling-get-help__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-responsible-gambling-get-help__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-responsible-gambling-get-help__list li {
    background-color: #1A2B4C; /* Dark blue background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.page-responsible-gambling-get-help__list li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
}

.page-responsible-gambling-get-help__list li p {
    margin: 0;
    color: #FFFFFF;
}

.page-responsible-gambling-get-help__link {
    color: #FF8C00; /* Orange for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-responsible-gambling-get-help__link:hover {
    color: #FFA500; /* Slightly lighter orange on hover */
    text-decoration: underline;
}

.page-responsible-gambling-get-help__button-group {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-responsible-gambling-get-help__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-get-help__button--primary {
    background-color: #FF8C00; /* Orange button */
    color: #1A2B4C; /* Dark blue text on orange */
    border: 2px solid #FF8C00;
}

.page-responsible-gambling-get-help__button--primary:hover {
    background-color: #FFA500;
    border-color: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-get-help__button--secondary {
    background-color: #1A2B4C; /* Dark blue button */
    color: #FF8C00; /* Orange text on dark blue */
    border: 2px solid #FF8C00;
}

.page-responsible-gambling-get-help__button--secondary:hover {
    background-color: #2C4A7C;
    border-color: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-get-help__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-responsible-gambling-get-help__final-note {
    text-align: center;
    font-size: 1.2em;
    margin-top: 60px;
    font-weight: bold;
    color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gambling-get-help__hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gambling-get-help__hero-description {
        font-size: 1.1em;
    }

    .page-responsible-gambling-get-help__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling-get-help__sub-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling-get-help__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-responsible-gambling-get-help__list li {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-get-help__hero-title {
        font-size: 2em;
    }

    .page-responsible-gambling-get-help__hero-description {
        font-size: 1em;
    }

    .page-responsible-gambling-get-help__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-get-help__sub-title {
        font-size: 1.3em;
    }

    .page-responsible-gambling-get-help__button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .page-responsible-gambling-get-help__list li {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-responsible-gambling-get-help__list li::before {
        margin-bottom: 5px;
    }
}