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

/* Base styles for the page content */
.page-responsible-gambling-seek-help {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
    padding-bottom: 50px;
}

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

.page-responsible-gambling-seek-help__container--center {
    text-align: center;
}

.page-responsible-gambling-seek-help__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(224, 180, 0, 0.1);
}

.page-responsible-gambling-seek-help__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gambling-seek-help__section-title {
    font-size: 2.8em;
    color: #E0B400; /* Auxiliary golden yellow for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.page-responsible-gambling-seek-help h3 {
    color: #E0B400;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-responsible-gambling-seek-help p {
    margin-bottom: 20px;
    color: #D0D0D0; /* Slightly lighter grey for readability */
}

.page-responsible-gambling-seek-help ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #D0D0D0;
}

.page-responsible-gambling-seek-help ul li {
    margin-bottom: 10px;
}

.page-responsible-gambling-seek-help__list--check {
    list-style: none;
    padding-left: 0;
}

.page-responsible-gambling-seek-help__list--check li::before {
    content: '✅ ';
    color: #E0B400;
    margin-right: 10px;
}

/* Hero Section */
.page-responsible-gambling-seek-help__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a3f4a 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-seek-help__hero-title {
    font-size: 3.8em;
    color: #E0B400;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-seek-help__hero-subtitle {
    font-size: 1.4em;
    color: #F0F0F0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-seek-help__hero-cta {
    display: inline-block;
    background-color: #E0B400;
    color: #1A202C;
    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-seek-help__hero-cta:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

/* Content Grid */
.page-responsible-gambling-seek-help__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-responsible-gambling-seek-help__text-content {
    flex: 2;
    min-width: 300px;
}

.page-responsible-gambling-seek-help__image-wrapper {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page-responsible-gambling-seek-help__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-seek-help__image--centered {
    display: block;
    margin: 40px auto;
}

/* Card Grid */
.page-responsible-gambling-seek-help__grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-responsible-gambling-seek-help__grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-responsible-gambling-seek-help__card {
    background-color: #2A303C; /* Slightly lighter dark background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-responsible-gambling-seek-help__card:hover {
    transform: translateY(-5px);
}

.page-responsible-gambling-seek-help__card-title {
    color: #E0B400;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gambling-seek-help__self-assessment {
    background-color: #2A303C;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling-seek-help__self-assessment-title {
    color: #E0B400;
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
}

/* Feature Items (for Tools and Family sections) */
.page-responsible-gambling-seek-help__feature-item {
    background-color: #2A303C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-responsible-gambling-seek-help__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(224, 180, 0, 0.5));
}

.page-responsible-gambling-seek-help__feature-title {
    color: #E0B400;
    font-size: 1.6em;
    margin-bottom: 15px;
}

/* Help Resources */
.page-responsible-gambling-seek-help__help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-responsible-gambling-seek-help__resource-item {
    background-color: #2A303C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling-seek-help__resource-title {
    color: #E0B400;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-responsible-gambling-seek-help__contact-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #F0F0F0;
}

.page-responsible-gambling-seek-help__cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    background-color: #E0B400;
    color: #1A202C;
    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-seek-help__cta-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

/* Tips Section */
.page-responsible-gambling-seek-help__tip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-responsible-gambling-seek-help__tip-item {
    background-color: #2A303C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

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

.page-responsible-gambling-seek-help__tip-title {
    color: #E0B400;
    font-size: 1.6em;
    margin-bottom: 10px;
}

/* FAQ Accordion */
.page-responsible-gambling-seek-help__accordion {
    margin-top: 40px;
}

.page-responsible-gambling-seek-help__accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(224, 180, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.page-responsible-gambling-seek-help__accordion-header {
    background-color: #2A303C;
    color: #E0B400;
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-responsible-gambling-seek-help__accordion-header:hover {
    background-color: #3A404C;
}

.page-responsible-gambling-seek-help__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-responsible-gambling-seek-help__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-responsible-gambling-seek-help__accordion-content {
    background-color: #202633; /* Slightly different dark shade for content */
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-responsible-gambling-seek-help__accordion-content.active {
    max-height: 500px; /* Adjust as needed for content height */
    padding: 20px 30px;
}

.page-responsible-gambling-seek-help__accordion-content p {
    color: #D0D0D0;
    margin-bottom: 0;
}

/* Final CTA */
.page-responsible-gambling-seek-help__final-cta {
    background-color: #2A303C;
    padding: 80px 0;
    text-align: center;
    border-radius: 10px;
    margin: 60px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-seek-help__final-cta .page-responsible-gambling-seek-help__section-title {
    color: #E0B400;
    font-size: 3em;
    margin-bottom: 25px;
}

.page-responsible-gambling-seek-help__final-cta p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling-seek-help__hero-title {
        font-size: 3em;
    }
    .page-responsible-gambling-seek-help__hero-subtitle {
        font-size: 1.2em;
    }
    .page-responsible-gambling-seek-help__section-title {
        font-size: 2.2em;
    }
    .page-responsible-gambling-seek-help h3 {
        font-size: 1.5em;
    }
    .page-responsible-gambling-seek-help__content-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-seek-help__hero {
        padding: 80px 0;
    }
    .page-responsible-gambling-seek-help__hero-title {
        font-size: 2.5em;
    }
    .page-responsible-gambling-seek-help__hero-subtitle {
        font-size: 1.1em;
    }
    .page-responsible-gambling-seek-help__section {
        padding: 40px 0;
    }
    .page-responsible-gambling-seek-help__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-seek-help__card, 
    .page-responsible-gambling-seek-help__feature-item, 
    .page-responsible-gambling-seek-help__resource-item {
        padding: 20px;
    }
    .page-responsible-gambling-seek-help__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-responsible-gambling-seek-help__accordion-content {
        padding: 15px 20px;
    }
    .page-responsible-gambling-seek-help__final-cta {
        padding: 60px 20px;
    }
    .page-responsible-gambling-seek-help__final-cta .page-responsible-gambling-seek-help__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-seek-help__hero-title {
        font-size: 2em;
    }
    .page-responsible-gambling-seek-help__hero-subtitle {
        font-size: 1em;
    }
    .page-responsible-gambling-seek-help__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling-seek-help__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-seek-help h3 {
        font-size: 1.3em;
    }
    .page-responsible-gambling-seek-help__self-assessment-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-seek-help__final-cta .page-responsible-gambling-seek-help__section-title {
        font-size: 1.8em;
    }
}