.page-promo {
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for first section, body padding-top handles header offset */
}

/* Typography */
.page-promo__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 20px;
    text-align: center;
}

.page-promo__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 30px;
    text-align: center;
}

.page-promo__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #FFF6D6; /* Text Main */
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-promo__card-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 15px;
}

.page-promo__hero-description,
.page-promo__text-block,
.page-promo__card-description {
    font-size: 1.1rem;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 20px;
}

/* Specific text colors for light background sections */
.page-promo__text-dark {
    color: #333333; /* Dark text for light backgrounds */
}

/* Sections & Containers */
.page-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-promo__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text on mobile, reverse on desktop */
    align-items: center;
    justify-content: center;
    padding: 0 20px 40px;
    text-align: center;
    background-color: #0A0A0A; /* Background */
    overflow: hidden;
}

.page-promo__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px; /* Space between image and content */
    order: 1; /* Image first on mobile */
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.page-promo__hero-content {
    max-width: 900px;
    padding: 20px;
    order: 2; /* Content second on mobile */
    z-index: 1;
}

.page-promo__info-section,
.page-promo__exclusive-promotions,
.page-promo__mobile-app-promo,
.page-promo__cta-final-section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background */
}

.page-promo__why-choose-section,
.page-promo__how-to-claim,
.page-promo__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background for contrast */
}

/* Feature Grid */
.page-promo__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__feature-card {
    background: #111111; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #3A2A12; /* Border */
}

.page-promo__feature-icon {
    width: 100%;
    max-width: 200px; /* Larger icons */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-promo__promo-card {
    background: #111111; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    border: 1px solid #3A2A12; /* Border */
}

.page-promo__promo-image {
    width: 100%;
    height: 250px; /* Fixed height for promo images */
    object-fit: cover;
    display: block;
}

.page-promo__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* How to Claim Steps */
.page-promo__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__step-card {
    background: #111111; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #3A2A12; /* Border */
}

.page-promo__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #000000; /* Dark text on button gradient */
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-promo__card-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 15px;
}

/* Mobile App Promo */
.page-promo__mobile-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: column; /* Default to column on mobile */
}

.page-promo__mobile-content {
    flex: 1;
    text-align: center;
}

.page-promo__mobile-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

.page-promo__mobile-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-promo__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

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

.page-promo__btn-primary,
.page-promo__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promo__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #000000; /* Dark text on button gradient */
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__btn-primary:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
    transform: translateY(-2px);
}

.page-promo__btn-secondary {
    background: transparent;
    color: #FFD36B; /* Glow color for secondary button text */
    border: 2px solid #FFD36B; /* Glow color for border */
}

.page-promo__btn-secondary:hover {
    background: rgba(255, 211, 107, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* FAQ Section */
.page-promo__faq-list {
    margin-top: 40px;
    border-top: 1px solid #3A2A12; /* Border */
}

.page-promo__faq-item {
    border-bottom: 1px solid #3A2A12; /* Border */
    background-color: #111111; /* Card BG */
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

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

.page-promo__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #111111; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.1); /* Slight hover effect */
}

.page-promo__faq-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #FFF6D6; /* Text Main */
}

.page-promo__faq-toggle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD36B; /* Glow color */
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
    transform: rotate(45deg); /* Plus to X rotation */
}

.page-promo__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #111111; /* Card BG */
}

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

.page-promo__faq-answer p {
    margin-bottom: 0;
    color: #FFF6D6; /* Text Main */
}

/* Responsive Design */
@media (min-width: 769px) {
    .page-promo__hero-section {
        flex-direction: row-reverse; /* Image right, content left on desktop */
        text-align: left;
        padding-top: 60px;
    }

    .page-promo__hero-image-wrapper {
        margin-bottom: 0;
        margin-left: 40px;
        order: 2;
        flex: 1;
    }

    .page-promo__hero-content {
        order: 1;
        flex: 1;
        text-align: left;
        padding-right: 40px;
    }

    .page-promo__main-title,
    .page-promo__hero-description {
        text-align: left;
    }

    .page-promo__cta-buttons {
        justify-content: flex-start;
    }

    .page-promo__mobile-flex {
        flex-direction: row; /* Desktop layout for mobile app promo */
        text-align: left;
    }

    .page-promo__mobile-content {
        text-align: left;
    }

    .page-promo__mobile-content .page-promo__cta-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .page-promo {
        font-size: 16px;
        line-height: 1.6;
        padding-top: 10px !important; /* Small top padding, body padding-top handles header offset */
    }

    .page-promo__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-promo__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .page-promo__sub-title {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
    }

    .page-promo__card-title {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
    }

    .page-promo__hero-description,
    .page-promo__text-block,
    .page-promo__card-description {
        font-size: 1rem;
    }

    .page-promo__container,
    .page-promo__hero-section,
    .page-promo__info-section,
    .page-promo__why-choose-section,
    .page-promo__exclusive-promotions,
    .page-promo__how-to-claim,
    .page-promo__mobile-app-promo,
    .page-promo__faq-section,
    .page-promo__cta-final-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promo img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promo__hero-image-wrapper,
    .page-promo__feature-card,
    .page-promo__promo-card,
    .page-promo__step-card,
    .page-promo__mobile-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-promo__btn-primary,
    .page-promo__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promo__faq-item.active .page-promo__faq-answer {
        padding: 10px 15px 15px !important;
    }
    
    .page-promo__faq-question {
        padding: 15px 15px;
    }
}