/* style/responsible-gaming.css */

/* General page styles */
.page-responsible-gaming {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: var(--secondary-color, #FFFFFF); /* Ensure white background */
}

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

.page-responsible-gaming__container--center {
    text-align: center;
}

.page-responsible-gaming__section {
    padding: 60px 0;
}

.page-responsible-gaming__section-title {
    font-size: 2.5em;
    color: #017439; /* Primary color for titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-responsible-gaming__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-responsible-gaming__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-responsible-gaming__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Color schemes */
.page-responsible-gaming__dark-bg {
    background-color: #017439; /* Primary brand color */
    color: #ffffff; /* White text for dark background */
}

.page-responsible-gaming__dark-bg .page-responsible-gaming__section-title,
.page-responsible-gaming__dark-bg .page-responsible-gaming__card-title {
    color: #ffffff;
}

.page-responsible-gaming__light-bg {
    background-color: #ffffff; /* Secondary brand color (white) */
    color: #333333; /* Dark text for light background */
}

/* Hero Section */
.page-responsible-gaming__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    text-align: center;
    background-color: #017439;
    color: #ffffff;
}