/* style/responsible-gambling-help-resources.css */
.page-responsible-gambling-help-resources {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #f8f8f8;
}

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

.page-responsible-gambling-help-resources__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-responsible-gambling-help-resources__section {
    padding: 60px 0;
}

.page-responsible-gambling-help-resources__section--light {
    background-color: #f8f8f8;
    color: #2C3E50;
}

.page-responsible-gambling-help-resources__section--dark {
    background-color: #2C3E50;
    color: #FFFFFF;
}

.page-responsible-gambling-help-resources__section--cta {
    background: linear-gradient(135deg, #FFD700, #b39700);
    color: #2C3E50;
}

.page-responsible-gambling-help-resources__hero-section {
    background: linear-gradient(135deg, #FFD700, #2C3E50);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-help-resources__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-help-resources__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #FFD700;
}

.page-responsible-gambling-help-resources__hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

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

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

.page-responsible-gambling-help-resources__section-title--inverted {
    color: #FFD700;
}

.page-responsible-gambling-help-resources__section-title--inverted::after {
    background-color: #FFD700;
}

.page-responsible-gambling-help-resources__subsection-title {
    font-size: 1.8em;
    color: #2C3E50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-responsible-gambling-help-resources__subsection-title--inverted {
    color: #FFD700;
}

.page-responsible-gambling-help-resources__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-responsible-gambling-help-resources__text--inverted {
    color: #FFFFFF;
}

.page-responsible-gambling-help-resources__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-responsible-gambling-help-resources__list--inverted li {
    color: #FFFFFF;
}

.page-responsible-gambling-help-resources__list li {
    margin-bottom: 10px;
}

.page-responsible-gambling-help-resources__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling-help-resources__link:hover {
    text-decoration: underline;
    color: #b39700;
}

.page-responsible-gambling-help-resources__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gambling-help-resources__grid--two-columns {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-responsible-gambling-help-resources__grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-responsible-gambling-help-resources__grid-item:hover {
    transform: translateY(-5px);
}

.page-responsible-gambling-help-resources__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.page-responsible-gambling-help-resources__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling-help-resources__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-responsible-gambling-help-resources__faq-question {
    font-size: 1.3em;
    color: #2C3E50;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFD700;
    color: #2C3E50;
    font-weight: bold;
    border-bottom: 1px solid #e0c200;
}

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

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

.page-responsible-gambling-help-resources__faq-answer {
    padding: 20px;
    background-color: #fcfcfc;
    display: none;
    border-top: 1px solid #eee;
}

.page-responsible-gambling-help-resources__cta-content {
    flex: 1;
}

.page-responsible-gambling-help-resources__cta-image {
    flex: 0 0 400px;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-resources__cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-responsible-gambling-help-resources__btn {
    display: inline-block;
    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;
    text-align: center;
    white-space: nowrap;
}

.page-responsible-gambling-help-resources__btn--primary {
    background-color: #2C3E50;
    color: #FFD700;
    border: 2px solid #2C3E50;
}

.page-responsible-gambling-help-resources__btn--primary:hover {
    background-color: #000000;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-responsible-gambling-help-resources__btn--secondary {
    background-color: #FFD700;
    color: #2C3E50;
    border: 2px solid #FFD700;
}

.page-responsible-gambling-help-resources__btn--secondary:hover {
    background-color: #b39700;
    color: #2C3E50;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 2.8em;
    }

    .page-responsible-gambling-help-resources__hero-subtitle {
        font-size: 1.3em;
    }

    .page-responsible-gambling-help-resources__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling-help-resources__subsection-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling-help-resources__text,
    .page-responsible-gambling-help-resources__list {
        font-size: 1em;
    }

    .page-responsible-gambling-help-resources__grid,
    .page-responsible-gambling-help-resources__grid--two-columns {
        grid-template-columns: 1fr;
    }

    .page-responsible-gambling-help-resources__container--flex {
        flex-direction: column;
        text-align: center;
    }

    .page-responsible-gambling-help-resources__cta-image {
        max-width: 100%;
        flex: none;
        margin-top: 30px;
    }

    .page-responsible-gambling-help-resources__cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 2.2em;
    }

    .page-responsible-gambling-help-resources__hero-subtitle {
        font-size: 1.1em;
    }

    .page-responsible-gambling-help-resources__section {
        padding: 40px 0;
    }

    .page-responsible-gambling-help-resources__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-responsible-gambling-help-resources__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-help-resources__hero-subtitle {
        font-size: 1em;
    }

    .page-responsible-gambling-help-resources__hero-image {
        max-width: 95%;
    }

    .page-responsible-gambling-help-resources__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-help-resources__subsection-title {
        font-size: 1.3em;
    }

    .page-responsible-gambling-help-resources__btn {
        width: 100%;
    }

    .page-responsible-gambling-help-resources__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}