/* style/responsible-gaming.css */

/* Base styling for the page content container */
.page-responsible-gaming {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    color: #333333; /* Dark text on light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9; /* Slightly off-white background for sections */
}

/* Section general styling */
.page-responsible-gaming__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-responsible-gaming__section:last-of-type {
    margin-bottom: 0;
}

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

/* Hero Section */
.page-responsible-gaming__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    text-align: center;
    color: #ffffff;
    background-color: #007bff; /* Fallback background */
}

.page-responsible-gaming__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.5); /* Slightly darken image for text readability */
}