/* style/responsible-gambling-importance.css */

/* Base styles for the page content, ensuring good readability */
.page-responsible-gambling-importance {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for general text on light backgrounds */
    background-color: #f8f9fa; /* Light background for overall page */
    padding: 20px 0;
}

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

/* Hero Section */
.page-responsible-gambling-importance__hero {
    background-color: #0A2342; /* Main dark blue background */
    color: #ffffff; /* White text on dark blue background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-importance__hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
}

.page-responsible-gambling-importance__hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0; /* Slightly off-white for body text */
}

.page-responsible-gambling-importance__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-responsible-gambling-importance__section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for sections */
    border-bottom: 1px solid #eeeeee;
}

.page-responsible-gambling-importance__section--alt {
    background-color: #f0f2f5; /* Slightly darker background for alternating sections */
}

.page-responsible-gambling-importance__section h2 {
    font-size: 2.2em;
    color: #0A2342; /* Dark blue for section titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-responsible-gambling-importance__section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700; /* Gold underline for titles */
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-responsible-gambling-importance__section h3 {
    font-size: 1.8em;
    color: #0A2342; /* Dark blue for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-responsible-gambling-importance__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444444; /* Slightly darker grey for body text */
}

.page-responsible-gambling-importance__section ul,
.page-responsible-gambling-importance__section ol {
    margin-bottom: 20px;
    padding-left: 25px;
    list-style-type: disc;
    color: #444444;
}

.page-responsible-gambling-importance__section ol {
    list-style-type: decimal;
}

.page-responsible-gambling-importance__section li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-responsible-gambling-importance__image-inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-responsible-gambling-importance__cta {
    background-color: #0A2342; /* Dark blue background for CTA */
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.page-responsible-gambling-importance__cta h2 {
    color: #FFD700; /* Gold for CTA title */
    font-size: 2.5em;
    margin-bottom: 25px;
}

.page-responsible-gambling-importance__cta h2::after {
    background-color: #FFD700; /* Gold underline */
}

.page-responsible-gambling-importance__cta p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-responsible-gambling-importance__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #0A2342; /* Dark blue text on gold button */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-importance__button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-importance__hero h1 {
        font-size: 2.2em;
    }
    .page-responsible-gambling-importance__hero p {
        font-size: 1.1em;
    }
    .page-responsible-gambling-importance__section h2 {
        font-size: 1.8em;
    }
    .page-responsible-gambling-importance__section h3 {
        font-size: 1.5em;
    }
    .page-responsible-gambling-importance__section p,
    .page-responsible-gambling-importance__section li {
        font-size: 1em;
    }
    .page-responsible-gambling-importance__cta h2 {
        font-size: 2em;
    }
    .page-responsible-gambling-importance__cta p {
        font-size: 1.1em;
    }
    .page-responsible-gambling-importance__button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-importance__hero {
        padding: 60px 0;
    }
    .page-responsible-gambling-importance__hero h1 {
        font-size: 2em;
    }
    .page-responsible-gambling-importance__hero p {
        font-size: 1em;
    }
    .page-responsible-gambling-importance__section {
        padding: 40px 0;
    }
    .page-responsible-gambling-importance__section h2 {
        font-size: 1.6em;
    }
    .page-responsible-gambling-importance__section h3 {
        font-size: 1.3em;
    }
    .page-responsible-gambling-importance__cta {
        padding: 50px 0;
    }
    .page-responsible-gambling-importance__cta h2 {
        font-size: 1.8em;
    }
    .page-responsible-gambling-importance__cta p {
        font-size: 1em;
    }
    .page-responsible-gambling-importance__button {
        padding: 10px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-importance__hero h1 {
        font-size: 1.8em;
    }
    .page-responsible-gambling-importance__section h2 {
        font-size: 1.4em;
    }
    .page-responsible-gambling-importance__section h3 {
        font-size: 1.2em;
    }
    .page-responsible-gambling-importance__cta h2 {
        font-size: 1.6em;
    }
}