/* style/responsible-gambling-seek-help.css */
.page-responsible-gambling-seek-help {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0B95B; /* Light text for dark background */
    background-color: #1A1A2E; /* Dark background */
}

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

.page-responsible-gambling-seek-help__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5a 100%);
    color: #E0B95B;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-responsible-gambling-seek-help__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
}

.page-responsible-gambling-seek-help__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B95B;
    line-height: 1.2;
}

.page-responsible-gambling-seek-help__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-responsible-gambling-seek-help__hero-button {
    display: inline-block;
    background-color: #E0B95B;
    color: #1A1A2E;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-responsible-gambling-seek-help__hero-button:hover {
    background-color: #f5c86f;
    transform: translateY(-3px);
}

.page-responsible-gambling-seek-help__hero-image-wrapper {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

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

.page-responsible-gambling-seek-help__section {
    padding: 60px 0;
    background-color: #1A1A2E;
    color: #f0f0f0;
}

.page-responsible-gambling-seek-help__section:nth-of-type(even) {
    background-color: #2c2c4a; /* Slightly lighter dark background for contrast */
}

.page-responsible-gambling-seek-help__section-title {
    font-size: 2.2em;
    color: #E0B95B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-responsible-gambling-seek-help__understanding p,
.page-responsible-gambling-seek-help__community-family p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #ccc;
}

.page-responsible-gambling-seek-help__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 30px;
    color: #ccc;
}

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

.page-responsible-gambling-seek-help__image-full-width {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-seek-help__image-center {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-seek-help__image-right {
    float: right;
    margin: 20px 0 20px 40px;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-seek-help__image-left {
    float: left;
    margin: 20px 40px 20px 0;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .page-responsible-gambling-seek-help__image-right,
    .page-responsible-gambling-seek-help__image-left {
        float: none;
        margin: 20px auto;
        max-width: 80%;
        display: block;
    }
}

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

.page-responsible-gambling-seek-help__tool-item {
    background-color: #2c2c4a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-responsible-gambling-seek-help__tool-title {
    font-size: 1.5em;
    color: #E0B95B;
    margin-bottom: 15px;
}

.page-responsible-gambling-seek-help__tool-item p {
    color: #ccc;
    font-size: 0.95em;
}

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

.page-responsible-gambling-seek-help__resource-item {
    background-color: #1A1A2E;
    border: 1px solid #E0B95B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-responsible-gambling-seek-help__resource-item p {
    color: #ccc;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-responsible-gambling-seek-help__button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #E0B95B;
    border: 2px solid #E0B95B;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.page-responsible-gambling-seek-help__button-secondary:hover {
    background-color: #E0B95B;
    color: #1A1A2E;
}

.page-responsible-gambling-seek-help__faq {
    background-color: #2c2c4a;
}

.page-responsible-gambling-seek-help__faq-accordion {
    margin-top: 40px;
}

.page-responsible-gambling-seek-help__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #3a3a5a;
    border-radius: 8px;
    overflow: hidden;
}

.page-responsible-gambling-seek-help__accordion-header {
    background-color: #1A1A2E;
    color: #E0B95B;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
}

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

.page-responsible-gambling-seek-help__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

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

.page-responsible-gambling-seek-help__accordion-content {
    padding: 0 25px;
    background-color: #1A1A2E;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-responsible-gambling-seek-help__accordion-content p {
    color: #ccc;
    padding-bottom: 20px;
    font-size: 1em;
}

.page-responsible-gambling-seek-help__cta {
    background-color: #E0B95B;
    color: #1A1A2E;
    padding: 80px 20px;
    text-align: center;
}

.page-responsible-gambling-seek-help__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1A1A2E;
}

.page-responsible-gambling-seek-help__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #3a3a5a;
}

.page-responsible-gambling-seek-help__cta-button {
    display: inline-block;
    background-color: #1A1A2E;
    color: #E0B95B;
    padding: 18px 40px;
    border-radius: 8px;
    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: #3a3a5a;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-responsible-gambling-seek-help__hero-title {
        font-size: 2.5em;
    }
    .page-responsible-gambling-seek-help__section-title {
        font-size: 2em;
    }
    .page-responsible-gambling-seek-help__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-seek-help__hero {
        flex-direction: column;
        text-align: center;
    }
    .page-responsible-gambling-seek-help__hero-content {
        flex: 1 1 100%;
        text-align: center;
    }
    .page-responsible-gambling-seek-help__hero-image-wrapper {
        flex: 1 1 100%;
    }
    .page-responsible-gambling-seek-help__hero-title {
        font-size: 2em;
    }
    .page-responsible-gambling-seek-help__hero-description {
        font-size: 1em;
    }
    .page-responsible-gambling-seek-help__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-seek-help__cta-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-seek-help__image-right, .page-responsible-gambling-seek-help__image-left {
        float: none;
        margin: 20px auto;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-seek-help__hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-seek-help__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-seek-help__hero-button,
    .page-responsible-gambling-seek-help__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-responsible-gambling-seek-help__tool-item,
    .page-responsible-gambling-seek-help__resource-item {
        padding: 20px;
    }
    .page-responsible-gambling-seek-help__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-responsible-gambling-seek-help__accordion-header::after {
        right: 20px;
    }
    .page-responsible-gambling-seek-help__accordion-content {
        padding: 0 20px;
    }
    .page-responsible-gambling-seek-help__cta-title {
        font-size: 1.6em;
    }
    .page-responsible-gambling-seek-help__cta-description {
        font-size: 1em;
    }
}