.page-responsible-gambling {
    background-color: #F4F7FB;
    color: #1F2D3D;
}

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

.page-responsible-gambling__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as per instructions */
    padding-bottom: 40px;
    background-color: #2F6BFF;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Adjust as needed for visual impact */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-responsible-gambling__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-responsible-gambling__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-responsible-gambling__hero-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-responsible-gambling__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0EFFF;
}

.page-responsible-gambling__hero-cta, .page-responsible-gambling__cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__hero-cta:hover, .page-responsible-gambling__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__introduction-section,
.page-responsible-gambling__tools-section,
.page-responsible-gambling__advice-section {
    padding: 60px 0;
}

.page-responsible-gambling__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-responsible-gambling__text-content {
    font-size: 1.05em;
    line-height: 1.7;
    color: #1F2D3D;
    margin-bottom: 20px;
    text-align: justify;
}

.page-responsible-gambling__text-content--highlight {
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    background-color: #D6E2FF; /* Border color used as subtle highlight */
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

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

.page-responsible-gambling__card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-responsible-gambling__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(47, 107, 255, 0.15);
}

.page-responsible-gambling__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent card visuals */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-responsible-gambling__card-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #2F6BFF;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-responsible-gambling__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-responsible-gambling__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-responsible-gambling__list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
    color: #1F2D3D;
}

.page-responsible-gambling__list-icon {
    font-size: 1.5em;
    margin-right: 15px;
    color: #2F6BFF; /* Primary color for icons */
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gambling__hero-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-responsible-gambling__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling__hero-description {
        font-size: 1em;
    }

    .page-responsible-gambling__hero-cta, .page-responsible-gambling__cta-button {
        padding: 12px 24px;
        font-size: 1em;
    }

    .page-responsible-gambling__introduction-section,
    .page-responsible-gambling__tools-section,
    .page-responsible-gambling__advice-section {
        padding: 40px 0;
    }

    .page-responsible-gambling__card {
        padding: 25px;
    }

    .page-responsible-gambling__card-title {
        font-size: 1.3em;
    }

    .page-responsible-gambling__card-image {
        height: 200px;
    }

    .page-responsible-gambling__grid {
        grid-template-columns: 1fr;
    }

    /* Ensure content images do not overflow on mobile */
    .page-responsible-gambling img {
        max-width: 100%;
        height: auto;
    }

    .page-responsible-gambling__list-item {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling__hero-section {
        padding-bottom: 30px;
    }

    .page-responsible-gambling__hero-title {
        font-size: clamp(1.6em, 8vw, 2em);
    }

    .page-responsible-gambling__section-title {
        font-size: 1.6em;
    }

    .page-responsible-gambling__container {
        padding: 15px;
    }

    .page-responsible-gambling__text-content--highlight {
        padding: 15px;
    }

    .page-responsible-gambling__list-icon {
        font-size: 1.2em;
        margin-right: 10px;
    }
}