/* style/responsible-gambling-problem-gambling-help.css */
.page-responsible-gambling-problem-gambling-help {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #121E2E; /* Slightly lighter than main #1A2A40 for background contrast */
}

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

.page-responsible-gambling-problem-gambling-help__container--content {
    padding: 40px 20px;
    background-color: #1A2A40; /* Main dark background for content blocks */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.page-responsible-gambling-problem-gambling-help__hero-section {
    background: linear-gradient(135deg, #1A2A40 0%, #304860 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold text for hero titles */
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

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

.page-responsible-gambling-problem-gambling-help__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-responsible-gambling-problem-gambling-help__section {
    padding: 60px 0;
}

.page-responsible-gambling-problem-gambling-help__section:nth-of-type(even) .page-responsible-gambling-problem-gambling-help__container--content {
    background-color: #203048; /* Slightly different dark background for alternating sections */
}

.page-responsible-gambling-problem-gambling-help__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-responsible-gambling-problem-gambling-help__subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for subsection titles */
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-responsible-gambling-problem-gambling-help__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-responsible-gambling-problem-gambling-help__text--note {
    font-style: italic;
    color: #FFD700;
    margin-top: 30px;
    text-align: center;
}

.page-responsible-gambling-problem-gambling-help__text--footer {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    font-size: 1.2em;
    color: #BFBFBF;
}

.page-responsible-gambling-problem-gambling-help__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-responsible-gambling-problem-gambling-help__list-item {
    background-color: #2A3B50; /* Darker background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    color: #E0E0E0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-problem-gambling-help__list-item::before {
    content: '✓';
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-responsible-gambling-problem-gambling-help__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.page-responsible-gambling-problem-gambling-help__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2A40; /* Dark text for gold button */
    border: 2px solid #FFD700;
}

.page-responsible-gambling-problem-gambling-help__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-responsible-gambling-problem-gambling-help__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
}

.page-responsible-gambling-problem-gambling-help__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2A40;
    transform: translateY(-3px);
}

.page-responsible-gambling-problem-gambling-help__btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

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

.page-responsible-gambling-problem-gambling-help__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
}

.page-responsible-gambling-problem-gambling-help__assessment-form {
    background-color: #2A3B50;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-problem-gambling-help__form-group {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #405A70;
}

.page-responsible-gambling-problem-gambling-help__form-group p {
    font-size: 1.15em;
    margin-bottom: 15px;
    color: #F5F5F5;
    font-weight: bold;
}

.page-responsible-gambling-problem-gambling-help__form-group label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
    color: #D0D0D0;
    font-size: 1em;
}

.page-responsible-gambling-problem-gambling-help__form-group input[type="radio"] {
    margin-right: 10px;
    accent-color: #FFD700; /* Gold accent for radio buttons */
}

.page-responsible-gambling-problem-gambling-help__assessment-result {
    margin-top: 30px;
    padding: 20px;
    background-color: #1A2A40;
    border: 2px solid #FFD700;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    color: #FFD700;
    display: none; /* Hidden by default */
}

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

    .page-responsible-gambling-problem-gambling-help__hero-description {
        font-size: 1.1em;
    }

    .page-responsible-gambling-problem-gambling-help__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling-problem-gambling-help__subsection-title {
        font-size: 1.5em;
    }

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

    .page-responsible-gambling-problem-gambling-help__list-item {
        padding: 10px 15px;
    }

    .page-responsible-gambling-problem-gambling-help__container--content {
        padding: 30px 15px;
    }
}

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

    .page-responsible-gambling-problem-gambling-help__hero-description {
        font-size: 1em;
    }

    .page-responsible-gambling-problem-gambling-help__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-problem-gambling-help__subsection-title {
        font-size: 1.3em;
    }

    .page-responsible-gambling-problem-gambling-help__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}