.page-promo {
    color: var(--text-main-color, #FFF6D6); /* Default text color for the page */
    background-color: var(--bg-color, #0A0A0A); /* Ensure consistency if not provided by shared */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promo__section {
    padding: 60px 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.page-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Inner padding for content */
    box-sizing: border-box;
}

/* Header offset for the first section (not video) */
.page-promo__hero-section {
    position: relative;
    padding: 60px 0;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden; /* Ensure content doesn't bleed */
}

.page-promo__hero-image-container {
    width: 100%;
    max-height: 700px; /* Limit height for large screens */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none; /* Ensure no CSS filters */
}

.page-promo__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 15px;
    max-width: 900px;
    margin: -150px auto 0; /* Overlap slightly for visual effect, but text is below image */
    background: rgba(17, 17, 17, 0.9); /* Card BG color with transparency */
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main-color, #FFF6D6);
    letter-spacing: 0.05em;
}

.page-promo__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure container width for mobile */
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px; /* Ensure buttons don't touch edges */
}

.page-promo__btn-primary,
.page-promo__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt to container */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-promo__btn-primary {
    background: var(--button-gradient, linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%));
    color: #111111; /* Dark text for bright button */
    border: none;
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-promo__btn-secondary {
    background: transparent;
    color: var(--primary-color, #F2C14E);
    border: 2px solid var(--primary-color, #F2C14E);
}

.page-promo__btn-secondary:hover {
    background: var(--primary-color, #F2C14E);
    color: #111111;
    transform: translateY(-3px);
}

.page-promo__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__card {
    background: var(--card-bg-color, #111111); /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 25px;
    text-align: center;
    color: var(--text-main-color, #FFF6D6); /* Text on card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    filter: none; /* Ensure no CSS filters */
}

.page-promo__dark-section {
    background-color: var(--bg-color, #0A0A0A); /* Use the main dark background */
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__dark-bg-card {
    background: rgba(255, 255, 255, 0.05); /* Slightly lighter card on dark section */
    border: 1px solid var(--border-color, #3A2A12);
}

.page-promo__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filters */
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-promo__card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color, #F2C14E); /* Title color from primary */
}

.page-promo__card-text {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to grow */
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__card-button {
    background: var(--button-gradient, linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%));
    color: #111111;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    margin-top: 15px;
    max-width: 200px; /* Limit button width in card */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promo__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.3);
}

.page-promo__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-promo__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.page-promo__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color, #F2C14E);
    color: #111111;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.page-promo__step-text {
    font-size: 1.1rem;
    color: var(--text-main-color, #FFF6D6);
    text-align: left;
    flex-grow: 1;
}

.page-promo__cta-single {
    text-align: center;
    margin-top: 40px;
}

.page-promo__vip-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.page-promo__vip-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    filter: none; /* No CSS filters */
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-promo__vip-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 500px;
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__vip-benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color, #3A2A12);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-promo__vip-benefit-item::before {
    content: '⭐'; /* Use an emoji for the bullet */
    font-size: 1.2em;
    line-height: 1;
    color: var(--primary-color, #F2C14E);
}

.page-promo__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__term-item {
    background: var(--card-bg-color, #111111);
    border-left: 5px solid var(--primary-color, #F2C14E);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-main-color, #FFF6D6);
}

/* FAQ Styles */
.page-promo__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-promo__faq-item {
    background: var(--card-bg-color, #111111);
    border: 1px solid var(--border-color, #3A2A12);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03); /* Slightly different background for question */
    transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.page-promo__faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__faq-toggle {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color, #F2C14E);
    transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
    transform: rotate(0deg); /* No rotation for '-' */
}

.page-promo__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-main-color, #FFF6D6);
}

.page-promo__faq-item.active .page-promo__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px 20px 20px;
}

.page-promo__faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-main-color, #FFF6D6);
}

/* Final CTA Section */
.page-promo__cta-final {
    padding-bottom: 80px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-content {
        margin-top: -100px;
        padding: 30px 15px;
    }
    .page-promo__card-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .page-promo__section {
        padding: 40px 15px;
    }

    .page-promo__hero-section {
        padding: 40px 0;
        padding-top: 10px !important; /* body handles header offset */
    }

    .page-promo__hero-content {
        margin-top: -80px;
        padding: 25px 15px;
    }

    .page-promo__main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .page-promo__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-promo__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-promo__btn-primary,
    .page-promo__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promo__section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .page-promo__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-promo__cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promo__card-image {
        height: 200px;
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-promo__card-title {
        font-size: 1.4rem;
    }

    .page-promo__card-text {
        font-size: 0.9rem;
    }

    .page-promo__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .page-promo__step-number {
        margin-bottom: 10px;
    }

    .page-promo__step-text {
        font-size: 1rem;
    }

    .page-promo__vip-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-promo__vip-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-promo__vip-benefit-item {
        font-size: 1rem;
    }

    .page-promo__term-item {
        font-size: 0.95rem;
    }

    .page-promo__faq-question h3 {
        font-size: 1rem;
    }

    /* Images and containers responsive */
    .page-promo img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promo__section,
    .page-promo__card,
    .page-promo__container,
    .page-promo__cta-buttons,
    .page-promo__button-group,
    .page-promo__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}