/* style/responsible-gambling-help-resources.css */
.page-responsible-gambling-help-resources {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light text for dark background */
    background-color: #0A1931; /* Primary dark background */
    line-height: 1.6;
}

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

.page-responsible-gambling-help-resources__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-responsible-gambling-help-resources__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

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

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

.page-responsible-gambling-help-resources__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
    z-index: 1;
}

.page-responsible-gambling-help-resources__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-responsible-gambling-help-resources__section {
    padding: 60px 0;
    background-color: #0A1931;
}

.page-responsible-gambling-help-resources__section--alt-bg {
    background-color: #1A2A47; /* Slightly lighter dark blue for contrast */
}

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

.page-responsible-gambling-help-resources__sub-title {
    font-size: 1.8em;
    color: #E03B8B; /* Accent color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gambling-help-resources__text {
    font-size: 1.1em;
    color: #F0F0F0;
    margin-bottom: 20px;
}

.page-responsible-gambling-help-resources__text--note {
    font-style: italic;
    font-size: 0.95em;
    color: #CCCCCC;
    text-align: center;
    margin-top: 30px;
}

.page-responsible-gambling-help-resources__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #F0F0F0;
}

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

.page-responsible-gambling-help-resources__list li strong {
    color: #FFD700;
}

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

.page-responsible-gambling-help-resources__flex-container--reverse {
    flex-direction: row-reverse;
}

.page-responsible-gambling-help-resources__image-wrapper,
.page-responsible-gambling-help-resources__content-wrapper {
    flex: 1;
    min-width: 300px;
}

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

.page-responsible-gambling-help-resources__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-responsible-gambling-help-resources__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A1931; /* Dark blue text */
    border: 2px solid #FFD700;
}

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

.page-responsible-gambling-help-resources__btn--secondary {
    background-color: #E03B8B; /* Accent magenta */
    color: #FFFFFF;
    border: 2px solid #E03B8B;
}

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

.page-responsible-gambling-help-resources__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

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

.page-responsible-gambling-help-resources__resource-card {
    background-color: #0A1931;
    border: 1px solid #1A2A47;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-help-resources__resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling-help-resources__resource-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-responsible-gambling-help-resources__resource-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gambling-help-resources__resource-description {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-responsible-gambling-help-resources__resource-contact {
    font-size: 0.95em;
    color: #CCCCCC;
}

.page-responsible-gambling-help-resources__section--cta {
    background: linear-gradient(135deg, #1A2A47 0%, #0A1931 100%);
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #E03B8B;
}

.page-responsible-gambling-help-resources__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-responsible-gambling-help-resources__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling-help-resources__cta-text {
    font-size: 1.15em;
    color: #F0F0F0;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.page-responsible-gambling-help-resources__btn--cta {
    background-color: #E03B8B;
    color: #FFFFFF;
    border: 2px solid #E03B8B;
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-responsible-gambling-help-resources__btn--cta:hover {
    background-color: #c72a78;
    border-color: #c72a78;
}

.page-responsible-gambling-help-resources__btn--cta-outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-responsible-gambling-help-resources__btn--cta-outline:hover {
    background-color: #FFD700;
    color: #0A1931;
}

.page-responsible-gambling-help-resources__cta-image {
    width: 150px;
    height: auto;
    margin-top: 40px;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 2.8em;
    }
    .page-responsible-gambling-help-resources__section-title {
        font-size: 2em;
    }
    .page-responsible-gambling-help-resources__cta-title {
        font-size: 2.5em;
    }
    .page-responsible-gambling-help-resources__flex-container {
        flex-direction: column;
        text-align: center;
    }
    .page-responsible-gambling-help-resources__image-wrapper,
    .page-responsible-gambling-help-resources__content-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-responsible-gambling-help-resources__image-wrapper--left, .page-responsible-gambling-help-resources__image-wrapper--right {
        order: -1; /* Image appears first on smaller screens */
    }
    .page-responsible-gambling-help-resources__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-responsible-gambling-help-resources__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-help-resources__hero {
        padding: 60px 0;
    }
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 2.2em;
    }
    .page-responsible-gambling-help-resources__hero-subtitle {
        font-size: 1em;
    }
    .page-responsible-gambling-help-resources__section {
        padding: 40px 0;
    }
    .page-responsible-gambling-help-resources__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-help-resources__sub-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-help-resources__text, .page-responsible-gambling-help-resources__list li {
        font-size: 0.95em;
    }
    .page-responsible-gambling-help-resources__resource-grid {
        grid-template-columns: 1fr;
    }
    .page-responsible-gambling-help-resources__cta-title {
        font-size: 2em;
    }
    .page-responsible-gambling-help-resources__btn--cta, .page-responsible-gambling-help-resources__btn--cta-outline {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-help-resources__hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-help-resources__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-help-resources__sub-title {
        font-size: 1.3em;
    }
    .page-responsible-gambling-help-resources__btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-responsible-gambling-help-resources__list {
        padding-left: 10px;
    }
    .page-responsible-gambling-help-resources__cta-title {
        font-size: 1.8em;
    }
}