/* style/responsible-gambling.css */

/* Custom CSS Variables */
:root {
    --primary-color: #1A237E; /* Royal Blue */
    --secondary-color: #FFD700; /* Gold */
    --accent-color: #FF1744; /* Red for emphasis */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f4f4f4;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* Base styles for the page content */
.page-responsible-gambling {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light body background */
    background-color: var(--background-light); /* Assuming body background is light */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-responsible-gambling__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-responsible-gambling__section:nth-of-type(even) {
    background-color: var(--background-white);
}

.page-responsible-gambling__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-responsible-gambling__sub-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-responsible-gambling__paragraph {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
}

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

.page-responsible-gambling__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-responsible-gambling__list-item {
    margin-bottom: 10px;
    font-size: 17px;
}