/* style/responsible-gambling-help-resources.css */

.page-responsible-gambling-help-resources {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-responsible-gambling-help-resources__hero-section {
    background: linear-gradient(135deg, #0A2E50 0%, #1A4F80 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-help-resources__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.page-responsible-gambling-help-resources__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

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

.page-responsible-gambling-help-resources__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-responsible-gambling-help-resources__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2E50; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 8px;
    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);
}

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

.page-responsible-gambling-help-resources__cta-button--secondary {
    background-color: #0A2E50;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-responsible-gambling-help-resources__cta-button--secondary:hover {
    background-color: #1A4F80;
    color: #FFD700;
    border-color: #FFD700;
}

.page-responsible-gambling-help-resources__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-responsible-gambling-help-resources__section-title {
    font-size: 2.2em;
    color: #0A2E50; /* Dark blue */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700; /* Gold underline */
    padding-bottom: 10px;
    text-align: left;
}

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

.page-responsible-gambling-help-resources__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 30px;
    color: #555;
}

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

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

.page-responsible-gambling-help-resources__link {
    color: #0A2E50;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-responsible-gambling-help-resources__link:hover {
    color: #FFD700;
}

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

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

.page-responsible-gambling-help-resources__feature-item {
    background-color: #f0f4f7;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    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 20px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-help-resources__feature-item h3 {
    color: #0A2E50;
    font-size: 1.6em;
    margin-top: 15px;
    margin-bottom: 10px;
}

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

.page-responsible-gambling-help-resources__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

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