/* style/resources-responsible-gambling-guide.css */
.page-resources-responsible-gambling-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Default text color for dark background */
    background-color: #1A2E44; /* Main background color */
}

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

.page-resources-responsible-gambling-guide__hero-section {
    background: linear-gradient(135deg, #1A2E44, #3a5b82);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-resources-responsible-gambling-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-responsible-gambling-guide__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-resources-responsible-gambling-guide__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E44;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-responsible-gambling-guide__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-resources-responsible-gambling-guide__content-section {
    padding: 60px 0;
    background-color: #1A2E44;
}

.page-resources-responsible-gambling-guide__content-block {
    background-color: #2A4058;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-responsible-gambling-guide__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-resources-responsible-gambling-guide__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-responsible-gambling-guide p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-resources-responsible-gambling-guide__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

.page-resources-responsible-gambling-guide__list li strong {
    color: #FFD700;
}

.page-resources-responsible-gambling-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-responsible-gambling-guide__faq-item {
    background-color: #3A5B82;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-responsible-gambling-guide__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-responsible-gambling-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-responsible-gambling-guide__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-responsible-gambling-guide__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-resources-responsible-gambling-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    opacity: 1;
    margin-top: 15px;
}

.page-resources-responsible-gambling-guide__cta-bottom {
    text-align: center;
    padding: 50px 0;
    background-color: #2A4058;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-responsible-gambling-guide__cta-bottom .page-resources-responsible-gambling-guide__section-title {
    margin-bottom: 20px;
}

.page-resources-responsible-gambling-guide__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-responsible-gambling-guide__hero-title {
        font-size: 2.5em;
    }

    .page-resources-responsible-gambling-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-responsible-gambling-guide__section-title {
        font-size: 2em;
    }

    .page-resources-responsible-gambling-guide__sub-title {
        font-size: 1.5em;
    }

    .page-resources-responsible-gambling-guide__content-block {
        padding: 25px;
    }

    .page-resources-responsible-gambling-guide__list {
        margin-left: 15px;
    }

    .page-resources-responsible-gambling-guide__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-responsible-gambling-guide__hero-title {
        font-size: 2em;
    }

    .page-resources-responsible-gambling-guide__hero-section {
        padding: 60px 0;
    }

    .page-resources-responsible-gambling-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-responsible-gambling-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-responsible-gambling-guide__sub-title {
        font-size: 1.3em;
    }

    .page-resources-responsible-gambling-guide__content-block {
        padding: 20px;
    }
}