/* style/responsible-gambling-help-orgs.css */

.page-responsible-gambling-help-orgs {
    font-family: Arial, sans-serif;
    color: #f5e6ce; /* Light text for dark backgrounds */
    background-color: #0A1931; /* Primary dark background */
}

.page-responsible-gambling-help-orgs__hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.page-responsible-gambling-help-orgs__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-responsible-gambling-help-orgs__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(0.2);
}

.page-responsible-gambling-help-orgs__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: #FFFFFF;
}

.page-responsible-gambling-help-orgs__hero-title {
    font-size: 3em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-responsible-gambling-help-orgs__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-help-orgs__section {
    padding: 60px 0;
    text-align: center;
}

.page-responsible-gambling-help-orgs__section:nth-of-type(even) {
    background-color: #1a2a47; /* Slightly lighter dark blue */
}

.page-responsible-gambling-help-orgs__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gambling-help-orgs__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-responsible-gambling-help-orgs__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.page-responsible-gambling-help-orgs__introduction p,
.page-responsible-gambling-help-orgs__organizations p,
.page-responsible-gambling-help-orgs__e2bet-commitment p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f5e6ce;
}

.page-responsible-gambling-help-orgs__image-inline {
    max-width: 80%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-responsible-gambling-help-orgs__org-card {
    background-color: #0A1931;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-help-orgs__org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-responsible-gambling-help-orgs__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-responsible-gambling-help-orgs__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #f5e6ce;
    margin-bottom: 20px;
}

.page-responsible-gambling-help-orgs__card-link {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-responsible-gambling-help-orgs__card-link:hover {
    background-color: #e6c200;
    color: #000000;
}

.page-responsible-gambling-help-orgs__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling-help-orgs__list li {
    background-color: #1a2a47;
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #f5e6ce;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-orgs__list li strong {
    color: #FFD700;
}

.page-responsible-gambling-help-orgs__button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-orgs__button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gambling-help-orgs__hero {
        height: 300px;
    }

    .page-responsible-gambling-help-orgs__hero-title {
        font-size: 2.2em;
    }

    .page-responsible-gambling-help-orgs__hero-description {
        font-size: 1em;
    }

    .page-responsible-gambling-help-orgs__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling-help-orgs__org-grid {
        grid-template-columns: 1fr;
    }

    .page-responsible-gambling-help-orgs__image-inline {
        max-width: 95%;
    }

    .page-responsible-gambling-help-orgs__list {
        padding: 0 10px;
    }

    .page-responsible-gambling-help-orgs__list li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-help-orgs__hero {
        height: 250px;
    }

    .page-responsible-gambling-help-orgs__hero-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-help-orgs__section-title {
        font-size: 1.8em;
    }

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