/* style/responsible-gambling.css */
.page-responsible-gambling {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text on dark background */
    line-height: 1.6;
    background-color: #0d1a2d; /* Darker background for main content */
}

.page-responsible-gambling__hero {
    background: linear-gradient(135deg, #1A2B4C, #0d1a2d);
    padding: 80px 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-responsible-gambling__hero-title {
    font-size: 3.5em;
    color: #FF8C00; /* Highlight color for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-responsible-gambling__hero-title .highlight {
    color: #f0f0f0;
}

.page-responsible-gambling__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-responsible-gambling__cta-button {
    display: inline-block;
    background-color: #FF8C00; /* Orange CTA button */
    color: #1A2B4C;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.page-responsible-gambling__hero-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    z-index: 0;
}

.page-responsible-gambling__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 4%;
    background-color: #1A2B4C; /* Primary dark blue for sections */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 40px;
}

.page-responsible-gambling__section-title {
    font-size: 2.5em;
    color: #FF8C00; /* Orange for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-responsible-gambling__section-title .highlight {
    color: #f0f0f0;
}

.page-responsible-gambling__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.page-responsible-gambling__text-content a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling__text-content a:hover {
    text-decoration: underline;
}

.page-responsible-gambling__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

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

.page-responsible-gambling__list-item-strong {
    color: #FF8C00;
}

.page-responsible-gambling__image-inline {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__detail-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-responsible-gambling__card {
    background-color: #0d1a2d; /* Darker background for cards */
    border-radius: 8px;
    padding: 30px;
    flex: 1 1 calc(50% - 30px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 280px;
}

.page-responsible-gambling__card-title {
    font-size: 1.8em;
    color: #FF8C00; /* Orange for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gambling__card-title a {
    color: #FF8C00;
    text-decoration: none;
}

.page-responsible-gambling__card-title a:hover {
    text-decoration: underline;
}

.page-responsible-gambling__card-description {
    color: #e0e0e0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-responsible-gambling__card-button {
    display: inline-block;
    background-color: #1A2B4C; /* Dark blue button for cards */
    color: #FF8C00;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #FF8C00;
}

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

.page-responsible-gambling__list--advice {
    list-style: none;
    padding-left: 0;
}

.page-responsible-gambling__list--advice li {
    position: relative;
    padding-left: 30px;
}

.page-responsible-gambling__list--advice li::before {
    content: '✓';
    color: #FF8C00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-responsible-gambling__faq-item {
    background-color: #0d1a2d;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling__faq-question {
    font-size: 1.4em;
    color: #FF8C00;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-responsible-gambling__faq-question a {
    color: #FF8C00;
    text-decoration: none;
}

.page-responsible-gambling__faq-question a:hover {
    text-decoration: underline;
}

.page-responsible-gambling__faq-answer {
    color: #e0e0e0;
    font-size: 1.05em;
}

.page-responsible-gambling__faq-answer a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gambling__faq-answer a:hover {
    text-decoration: underline;
}

.page-responsible-gambling__call-to-action {
    text-align: center;
    background-color: #1A2B4C;
    padding: 50px;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-responsible-gambling__call-to-action .page-responsible-gambling__section-title {
    color: #FF8C00;
}

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

.page-responsible-gambling__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FF8C00;
    color: #FF8C00;
}

.page-responsible-gambling__cta-button--secondary:hover {
    background-color: #FF8C00;
    color: #1A2B4C;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-responsible-gambling__hero-title {
        font-size: 2.8em;
    }
    .page-responsible-gambling__section-title {
        font-size: 2em;
    }
    .page-responsible-gambling__card {
        flex: 1 1 calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling__hero {
        padding: 60px 4%;
    }
    .page-responsible-gambling__hero-title {
        font-size: 2.2em;
    }
    .page-responsible-gambling__hero-description {
        font-size: 1em;
    }
    .page-responsible-gambling__section {
        padding: 30px;
        margin: 40px auto;
    }
    .page-responsible-gambling__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling__text-content,
    .page-responsible-gambling__list li,
    .page-responsible-gambling__card-description,
    .page-responsible-gambling__faq-answer {
        font-size: 0.95em;
    }
    .page-responsible-gambling__card-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling__faq-question {
        font-size: 1.2em;
    }
    .page-responsible-gambling__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-responsible-gambling__cta-button {
        width: 80%;
        max-width: 300px;
    }
}

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