/* style/faq-promotions.css */
.page-faq-promotions {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A1931;
}

.page-faq-promotions__hero {
    background: linear-gradient(135deg, #0A1931 0%, #304770 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-faq-promotions__hero-content {
    z-index: 1;
    max-width: 900px;
}

.page-faq-promotions__hero-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-promotions__hero-subtitle {
    font-size: 1.4em;
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-promotions__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-faq-promotions__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-faq-promotions__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-faq-promotions__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%; /* Adjust size as needed */
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-faq-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-faq-promotions__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-faq-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-faq-promotions__accordion-section {
    padding: 60px 0;
    background-color: #0A1931;
}

.page-faq-promotions__section--dark {
    background-color: #1a2a47; /* Slightly lighter dark blue for contrast */
}

.page-faq-promotions__accordion {
    border: 1px solid #FFD700;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-faq-promotions__accordion-item {
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.page-faq-promotions__accordion-item:last-child {
    border-bottom: none;
}

.page-faq-promotions__accordion-header {
    background-color: #0A1931;
    color: #FFD700;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-faq-promotions__accordion-header:hover {
    background-color: #1a2a47;
}

.page-faq-promotions__accordion-header::after {
    content: '\002B'; /* Plus sign */
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-faq-promotions__accordion-header.active::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(180deg);
}

.page-faq-promotions__accordion-content {
    padding: 0 25px;
    background-color: #1a2a47;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #E0E0E0;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-faq-promotions__accordion-content.active {
    max-height: 1000px; /* Adjust based on expected content length */
    padding: 20px 25px;
}

.page-faq-promotions__accordion-content p {
    margin-bottom: 15px;
}

.page-faq-promotions__accordion-content p:last-child {
    margin-bottom: 0;
}

.page-faq-promotions__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-faq-promotions__responsible-gaming {
    padding: 80px 20px;
    background-color: #0A1931;
    text-align: center;
}

.page-faq-promotions__responsible-gaming p {
    font-size: 1.15em;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto 30px auto;
    color: #E0E0E0;
}

.page-faq-promotions__responsible-gaming-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-promotions__hero {
        padding: 60px 15px;
    }

    .page-faq-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-faq-promotions__hero-subtitle {
        font-size: 1.1em;
    }

    .page-faq-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-faq-promotions__section-title {
        font-size: 2em;
    }

    .page-faq-promotions__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-faq-promotions__accordion-content.active {
        padding: 15px 20px;
    }

    .page-faq-promotions__hero-image-wrapper {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .page-faq-promotions__hero {
        padding: 40px 10px;
    }

    .page-faq-promotions__hero-title {
        font-size: 2em;
    }

    .page-faq-promotions__hero-subtitle {
        font-size: 1em;
    }

    .page-faq-promotions__section-title {
        font-size: 1.8em;
    }

    .page-faq-promotions__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-faq-promotions__accordion-content {
        font-size: 0.95em;
    }

    .page-faq-promotions__hero-image-wrapper {
        display: none; /* Hide on very small screens */
    }
}