/* style/responsible-gaming-self-exclusion-policy.css */

/* Base styles for the page content area */
.page-responsible-gaming-self-exclusion-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1A2B4C; /* Dark blue text on light background for readability */
    background-color: #f8f9fa; /* Very light grey background */
}

/* Container for consistent content width */
.page-responsible-gaming-self-exclusion-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-responsible-gaming-self-exclusion-policy__hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2B4C 0%, #3a4c70 50%, #FFD700 100%); /* Gradient from main to accent */
    color: #FFFFFF; /* White text on dark gradient */
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-responsible-gaming-self-exclusion-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-responsible-gaming-self-exclusion-policy__hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better contrast */
}

.page-responsible-gaming-self-exclusion-policy__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-responsible-gaming-self-exclusion-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

/* Section Styling */
.page-responsible-gaming-self-exclusion-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0; /* Light separator */
}

.page-responsible-gaming-self-exclusion-policy__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gaming-self-exclusion-policy__section h2 {
    font-size: 2.5em;
    color: #1A2B4C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-responsible-gaming-self-exclusion-policy__section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-responsible-gaming-self-exclusion-policy__section h3 {
    font-size: 1.8em;
    color: #1A2B4C;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-responsible-gaming-self-exclusion-policy__section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333; /* Slightly lighter text for paragraphs */
}

.page-responsible-gaming-self-exclusion-policy__section ul,
.page-responsible-gaming-self-exclusion-policy__section ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-responsible-gaming-self-exclusion-policy__section li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333333;
}

.page-responsible-gaming-self-exclusion-policy__section li strong {
    color: #1A2B4C;
}

.page-responsible-gaming-self-exclusion-policy__section a {
    color: #1A2B4C;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gaming-self-exclusion-policy__section a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Image styles within sections */
.page-responsible-gaming-self-exclusion-policy__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-responsible-gaming-self-exclusion-policy__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    text-align: center;
    border: none;
}

.page-responsible-gaming-self-exclusion-policy__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2B4C; /* Dark blue text on gold */
}

.page-responsible-gaming-self-exclusion-policy__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #000000; /* Black text on hover */
}

.page-responsible-gaming-self-exclusion-policy__btn--secondary {
    background-color: #1A2B4C; /* Dark blue button */
    color: #FFFFFF; /* White text on dark blue */
    border: 2px solid #1A2B4C;
}

.page-responsible-gaming-self-exclusion-policy__btn--secondary:hover {
    background-color: #3a4c70; /* Lighter blue on hover */
    border-color: #3a4c70;
    color: #FFD700; /* Gold text on hover */
}

/* Specific list styles for icons */
.page-responsible-gaming-self-exclusion-policy__list-icon {
    list-style: none;
    padding-left: 0;
}

.page-responsible-gaming-self-exclusion-policy__list-icon li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.page-responsible-gaming-self-exclusion-policy__list-icon li i {
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700; /* Gold icon color */
    font-size: 1.5em;
}

/* FAQ Section */
.page-responsible-gaming-self-exclusion-policy__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-responsible-gaming-self-exclusion-policy__faq-item h3 {
    margin: 0;
}

.page-responsible-gaming-self-exclusion-policy__faq-toggle {
    display: block;
    width: 100%;
    padding: 20px;
    background-color: #FFFFFF;
    color: #1A2B4C;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    position: relative;
}

.page-responsible-gaming-self-exclusion-policy__faq-toggle:hover,
.page-responsible-gaming-self-exclusion-policy__faq-toggle[aria-expanded="true"] {
    background-color: #f0f0f0;
}

.page-responsible-gaming-self-exclusion-policy__faq-toggle::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-responsible-gaming-self-exclusion-policy__faq-toggle[aria-expanded="true"]::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-responsible-gaming-self-exclusion-policy__faq-answer {
    padding: 0 20px 20px;
    background-color: #fcfcfc;
    color: #333333;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gaming-self-exclusion-policy__hero {
        padding: 80px 0;
    }

    .page-responsible-gaming-self-exclusion-policy__hero h1 {
        font-size: 2.5em;
    }

    .page-responsible-gaming-self-exclusion-policy__hero p {
        font-size: 1em;
    }

    .page-responsible-gaming-self-exclusion-policy__section h2 {
        font-size: 2em;
    }

    .page-responsible-gaming-self-exclusion-policy__section h3 {
        font-size: 1.5em;
    }

    .page-responsible-gaming-self-exclusion-policy__section p,
    .page-responsible-gaming-self-exclusion-policy__section li {
        font-size: 1em;
    }

    .page-responsible-gaming-self-exclusion-policy__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-responsible-gaming-self-exclusion-policy__faq-toggle {
        font-size: 1em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-responsible-gaming-self-exclusion-policy__hero {
        padding: 60px 0;
    }

    .page-responsible-gaming-self-exclusion-policy__hero h1 {
        font-size: 2em;
    }

    .page-responsible-gaming-self-exclusion-policy__btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .page-responsible-gaming-self-exclusion-policy__hero-content .page-responsible-gaming-self-exclusion-policy__btn {
        display: block;
    }
}