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

:root {
    --primary-color: #0A203C;
    --secondary-color: #FFD700;
    --text-on-dark: #FFFFFF;
    --text-on-light: #0A203C;
    --light-gray: #f4f4f4;
    --dark-gray: #333;
}

.page-responsible-gambling-support-resources {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

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

.page-responsible-gambling-support-resources__hero-section {
    background: linear-gradient(135deg, var(--primary-color), #2a4e6e);
    color: var(--text-on-dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-responsible-gambling-support-resources__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-responsible-gambling-support-resources__hero-section > * {
    position: relative;
    z-index: 2;
}

.page-responsible-gambling-support-resources__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-support-resources__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    color: var(--text-on-dark);
}

.page-responsible-gambling-support-resources__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-responsible-gambling-support-resources__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    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-support-resources__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-responsible-gambling-support-resources__cta-button--secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.page-responsible-gambling-support-resources__cta-button--secondary:hover {
    background-color: #1a3a5c;
    color: #ffd700;
}

.page-responsible-gambling-support-resources__cta-button--download {
    background-color: #4CAF50;
    color: var(--text-on-dark);
}

.page-responsible-gambling-support-resources__cta-button--download:hover {
    background-color: #45a049;
}

.page-responsible-gambling-support-resources__content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-responsible-gambling-support-resources__content-section:last-of-type {
    border-bottom: none;
}

.page-responsible-gambling-support-resources__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

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

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

.page-responsible-gambling-support-resources__content-section ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-responsible-gambling-support-resources__content-section li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444;
}

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

.page-responsible-gambling-support-resources__grid-item {
    background-color: var(--text-on-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-responsible-gambling-support-resources__grid-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-responsible-gambling-support-resources__feature-icon,
.page-responsible-gambling-support-resources__support-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-responsible-gambling-support-resources__grid-item--support {
    text-align: left;
}

.page-responsible-gambling-support-resources__grid-item--support h3 {
    text-align: left;
    margin-top: 0;
    font-size: 1.6em;
}

.page-responsible-gambling-support-resources__support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling-support-resources__support-link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.page-responsible-gambling-support-resources__contact-info {
    color: #555;
    text-decoration: none;
}

.page-responsible-gambling-support-resources__contact-info:hover {
    text-decoration: underline;
}

.page-responsible-gambling-support-resources__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-support-resources__contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-responsible-gambling-support-resources__contact-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.page-responsible-gambling-support-resources__contact-button:hover {
    background-color: #1a3a5c;
    color: #ffd700;
}

.page-responsible-gambling-support-resources__explore-123b {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    padding: 80px 0;
}

.page-responsible-gambling-support-resources__explore-123b .page-responsible-gambling-support-resources__section-title {
    color: var(--secondary-color);
}

.page-responsible-gambling-support-resources__explore-123b .page-responsible-gambling-support-resources__section-title::after {
    background-color: var(--text-on-dark);
}

.page-responsible-gambling-support-resources__explore-123b p {
    color: var(--text-on-dark);
    font-size: 1.15em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

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

    .page-responsible-gambling-support-resources__hero-subtitle,
    .page-responsible-gambling-support-resources__content-section p,
    .page-responsible-gambling-support-resources__content-section li {
        font-size: 1em;
    }

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

    .page-responsible-gambling-support-resources__grid {
        grid-template-columns: 1fr;
    }

    .page-responsible-gambling-support-resources__contact-methods,
    .page-responsible-gambling-support-resources__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .page-responsible-gambling-support-resources__cta-button,
    .page-responsible-gambling-support-resources__contact-button {
        width: 80%;
        max-width: 300px;
    }
}

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

    .page-responsible-gambling-support-resources__hero-subtitle {
        font-size: 0.9em;
    }

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

    .page-responsible-gambling-support-resources__cta-button,
    .page-responsible-gambling-support-resources__contact-button {
        padding: 12px 20px;
        font-size: 1em;
    }
}