/* style/responsible-gambling.css */

.page-responsible-gambling {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f8f8f8;
}

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

.page-responsible-gambling__hero-section {
    background: linear-gradient(135deg, #0A2463, #1A3B7E);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-responsible-gambling__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E3B505;
}

.page-responsible-gambling__brand-highlight {
    color: #ffffff;
}

.page-responsible-gambling__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-responsible-gambling__hero-button {
    display: inline-block;
    background-color: #E3B505;
    color: #0A2463;
    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;
}

.page-responsible-gambling__hero-button:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

.page-responsible-gambling__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-responsible-gambling__section-title {
    font-size: 2.2em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-responsible-gambling__subsection-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #E3B505;
    padding-left: 15px;
}

.page-responsible-gambling__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555555;
}

.page-responsible-gambling__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555555;
}

.page-responsible-gambling__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-responsible-gambling__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-responsible-gambling__main-image,
.page-responsible-gambling__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-responsible-gambling__card {
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling__card-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-responsible-gambling__card-text {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 25px;
}

.page-responsible-gambling__card-button {
    display: inline-block;
    background-color: #0A2463;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-responsible-gambling__card-button:hover {
    background-color: #1A3B7E;
}

.page-responsible-gambling__secondary-button {
    display: inline-block;
    background-color: #E3B505;
    color: #0A2463;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-responsible-gambling__secondary-button:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
}

.page-responsible-gambling__cta-section {
    background: linear-gradient(135deg, #E3B505, #FFD700);
    color: #0A2463;
    padding: 70px 0;
    text-align: center;
}

.page-responsible-gambling__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-responsible-gambling__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.page-responsible-gambling__cta-button {
    display: inline-block;
    background-color: #0A2463;
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-responsible-gambling__cta-button:hover {
    background-color: #1A3B7E;
    transform: translateY(-3px);
}

.page-responsible-gambling__related-links {
    padding: 50px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.page-responsible-gambling__related-title {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 30px;
}

.page-responsible-gambling__related-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-responsible-gambling__related-list-item a {
    display: block;
    background-color: #ffffff;
    color: #0A2463;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #0A2463;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-responsible-gambling__related-list-item a:hover {
    background-color: #0A2463;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gambling__hero-title {
        font-size: 2em;
    }
    .page-responsible-gambling__hero-description {
        font-size: 1em;
    }
    .page-responsible-gambling__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling__subsection-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling__card-grid {
        grid-template-columns: 1fr;
    }
    .page-responsible-gambling__cta-title {
        font-size: 2em;
    }
    .page-responsible-gambling__cta-description {
        font-size: 1em;
    }
    .page-responsible-gambling__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-responsible-gambling__related-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling__hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling__hero-description {
        font-size: 0.9em;
    }
    .page-responsible-gambling__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling__subsection-title {
        font-size: 1.3em;
    }
    .page-responsible-gambling__cta-title {
        font-size: 1.8em;
    }
}