/* style/responsible-gaming-self-exclusion.css */
.page-responsible-gaming-self-exclusion {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Primary dark blue background */
    line-height: 1.6;
}

.page-responsible-gaming-self-exclusion .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gaming-self-exclusion .hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%); /* Dark blue gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700; /* Gold accent */
}

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

.page-responsible-gaming-self-exclusion .hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.page-responsible-gaming-self-exclusion .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-responsible-gaming-self-exclusion .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
}

.page-responsible-gaming-self-exclusion .btn-primary:hover {
    background-color: #E0B300; /* Darker gold */
    transform: translateY(-3px);
}

.page-responsible-gaming-self-exclusion .btn-secondary {
    background-color: #1A3A5F; /* Medium dark blue */
    color: #FFD700; /* Gold */
    border: 1px solid #FFD700;
}

.page-responsible-gaming-self-exclusion .btn-secondary:hover {
    background-color: #2A4B7F; /* Lighter medium dark blue */
    transform: translateY(-3px);
}

.page-responsible-gaming-self-exclusion .content-block {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-responsible-gaming-self-exclusion .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-responsible-gaming-self-exclusion .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-responsible-gaming-self-exclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-responsible-gaming-self-exclusion strong {
    color: #FFD700;
}

.page-responsible-gaming-self-exclusion .image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-responsible-gaming-self-exclusion .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming-self-exclusion .checklist,
.page-responsible-gaming-self-exclusion .steps-list,
.page-responsible-gaming-self-exclusion .info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-responsible-gaming-self-exclusion .checklist li,
.page-responsible-gaming-self-exclusion .steps-list li,
.page-responsible-gaming-self-exclusion .info-list li {
    background-color: #1A3A5F; /* Medium dark blue */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-responsible-gaming-self-exclusion .checklist li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1;
}

.page-responsible-gaming-self-exclusion .steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFD700;
    color: #0A192F;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.1em;
}

.page-responsible-gaming-self-exclusion .info-list li::before {
    content: '•';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.5em;
    line-height: 1;
}

.page-responsible-gaming-self-exclusion .option-card-grid,
.page-responsible-gaming-self-exclusion .resource-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gaming-self-exclusion .option-card,
.page-responsible-gaming-self-exclusion .resource-card {
    background-color: #1A3A5F; /* Medium dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-responsible-gaming-self-exclusion .card-title {
    color: #FFD700; /* Gold */
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-responsible-gaming-self-exclusion .card-text {
    color: #E0E0E0;
    font-size: 1em;
    flex-grow: 1;
}

.page-responsible-gaming-self-exclusion .resource-card .btn {
    margin-top: 20px;
}

.page-responsible-gaming-self-exclusion .faq-section {
    background-color: #0A192F;
}

.page-responsible-gaming-self-exclusion .faq-item {
    background-color: #1A3A5F; /* Medium dark blue */
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming-self-exclusion .faq-question {
    color: #FFD700; /* Gold */
    font-size: 1.4em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-responsible-gaming-self-exclusion .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-responsible-gaming-self-exclusion .faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-responsible-gaming-self-exclusion .faq-answer {
    color: #E0E0E0;
    font-size: 1.05em;
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-responsible-gaming-self-exclusion .faq-answer.active {
    display: block;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gaming-self-exclusion .hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gaming-self-exclusion .hero-subtitle {
        font-size: 1.1em;
    }

    .page-responsible-gaming-self-exclusion .section-title {
        font-size: 2em;
    }

    .page-responsible-gaming-self-exclusion .option-card-grid,
    .page-responsible-gaming-self-exclusion .resource-card-grid {
        grid-template-columns: 1fr;
    }

    .page-responsible-gaming-self-exclusion .checklist li,
    .page-responsible-gaming-self-exclusion .steps-list li,
    .page-responsible-gaming-self-exclusion .info-list li {
        padding: 15px;
        font-size: 1em;
    }
}

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

    .page-responsible-gaming-self-exclusion .hero-title {
        font-size: 2em;
    }

    .page-responsible-gaming-self-exclusion .hero-subtitle {
        font-size: 1em;
    }

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

    .page-responsible-gaming-self-exclusion .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

    .page-responsible-gaming-self-exclusion .card-title {
        font-size: 1.5em;
    }

    .page-responsible-gaming-self-exclusion .faq-question {
        font-size: 1.2em;
    }
}