.page-responsible-gambling {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light text for dark background */
    background-color: #1A202C; /* Main primary color */
    line-height: 1.6;
}

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

.page-responsible-gambling__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Gradient with primary color */
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.page-responsible-gambling__hero-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.page-responsible-gambling__hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page-responsible-gambling__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__main-title {
    font-size: 3.2em;
    color: #FFD700; /* Secondary color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-responsible-gambling__subtitle {
    font-size: 1.2em;
    color: #CBD5E0;
    margin-bottom: 30px;
}

.page-responsible-gambling__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Secondary color for CTA */
    color: #1A202C; /* Dark text for light button */
    padding: 15px 30px;
    border-radius: 5px;
    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-responsible-gambling__cta-button:hover {
    background-color: #e5c100; /* Darker secondary on hover */
    transform: translateY(-2px);
}

.page-responsible-gambling__cta-button--secondary {
    background-color: #3a475a;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-responsible-gambling__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-responsible-gambling__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-responsible-gambling__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gambling__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Secondary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-responsible-gambling__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gambling__flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.page-responsible-gambling__flex-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #2D3748; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-responsible-gambling__flex-item img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.page-responsible-gambling__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-responsible-gambling__list li {
    background-color: #2D3748;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling__list-item-strong {
    color: #FFD700;
}

.page-responsible-gambling__cta-text {
    text-align: center;
    font-size: 1.2em;
    color: #CBD5E0;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-responsible-gambling__read-more-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-responsible-gambling__read-more-link:hover {
    color: #e5c100;
    text-decoration: underline;
}

.page-responsible-gambling__note {
    font-size: 0.9em;
    color: #A0AEC0;
    text-align: center;
    margin-top: 40px;
    font-style: italic;
}

.page-responsible-gambling__faq-item {
    background-color: #2D3748;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3a475a;
    border-bottom: 1px solid #1A202C;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-responsible-gambling__faq-question:hover {
    background-color: #4b5a6d;
}

.page-responsible-gambling__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-responsible-gambling__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #E2E8F0;
}

.page-responsible-gambling__faq-answer p {
    padding-bottom: 20px;
    margin: 0;
}

.page-responsible-gambling__faq-answer.active {
    max-height: 500px; /* Adjust based on content */
    padding-top: 15px;
    padding-bottom: 20px;
}

.page-responsible-gambling__final-cta {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #2D3748;
    border-radius: 10px;
    margin-top: 40px;
}

.page-responsible-gambling__final-cta .page-responsible-gambling__section-title {
    margin-bottom: 20px;
}

.page-responsible-gambling__final-cta p {
    font-size: 1.15em;
    color: #CBD5E0;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gambling__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-responsible-gambling__hero-content,
    .page-responsible-gambling__hero-image {
        padding: 15px;
    }

    .page-responsible-gambling__main-title {
        font-size: 2.5em;
    }

    .page-responsible-gambling__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling__sub-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling__flex-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .page-responsible-gambling__list li {
        padding: 15px;
        font-size: 1em;
    }

    .page-responsible-gambling__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}

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

    .page-responsible-gambling__subtitle {
        font-size: 1em;
    }

    .page-responsible-gambling__section-title {
        font-size: 1.8em;
    }

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