/* style/responsible-gambling-help-resources.css */
.page-responsible-gambling-help-resources {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for general text on light background */
    background-color: #f8f8f8; /* Light background for readability */
}

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

.page-responsible-gambling-help-resources__hero-section {
    background: linear-gradient(135deg, #4B0082 0%, #7d26c9 100%); /* Deep purple to a slightly lighter purple */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-responsible-gambling-help-resources__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-responsible-gambling-help-resources__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    animation: page-responsible-gambling-help-resources__fadeInUp 1s ease-out;
}

.page-responsible-gambling-help-resources__section {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee;
}

.page-responsible-gambling-help-resources__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gambling-help-resources__section-title {
    font-size: 2.5em;
    color: #4B0082; /* Deep purple for section titles */
    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: #FFD700; /* Gold underline */
    border-radius: 2px;
}

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

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

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

.page-responsible-gambling-help-resources__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-responsible-gambling-help-resources__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-help-resources__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling-help-resources__feature-title {
    font-size: 1.5em;
    color: #4B0082;
    margin-bottom: 15px;
}

.page-responsible-gambling-help-resources__feature-item p {
    font-size: 1em;
    color: #555555;
}

.page-responsible-gambling-help-resources__cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #4B0082;
    font-weight: bold;
}

.page-responsible-gambling-help-resources__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #4B0082; /* Deep purple text on gold 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;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    text-align: center;
}

.page-responsible-gambling-help-resources__button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-responsible-gambling-help-resources__button--primary {
    background-color: #4B0082; /* Deep purple button */
    color: #FFD700; /* Gold text on deep purple button */
}

.page-responsible-gambling-help-resources__button--primary:hover {
    background-color: #3a0066; /* Darker purple on hover */
}

.page-responsible-gambling-help-resources__resource-list {
    list-style: none;
    padding: 0;
}

.page-responsible-gambling-help-resources__resource-list li {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-responsible-gambling-help-resources__resource-list li:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-help-resources__resource-list h3 {
    color: #4B0082;
    font-size: 1.6em;
    margin-bottom: 10px;
}

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

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

.page-responsible-gambling-help-resources__resource-link:hover {
    color: #e6c200; /* Darker gold on hover */
    text-decoration: underline;
}

.page-responsible-gambling-help-resources__note {
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    color: #666666;
}

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

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

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

    .page-responsible-gambling-help-resources__features-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .page-responsible-gambling-help-resources__section p, 
    .page-responsible-gambling-help-resources__list li {
        font-size: 0.95em;
    }
}

/* Animations */
@keyframes page-responsible-gambling-help-resources__fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}