.page-promotions {
    color: #333333;
}

.page-promotions__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-promotions__hero-container {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    max-width: 900px;
    background: rgba(10, 36, 99, 0.7);
    border-radius: 15px;
    color: #ffffff;
}

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

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-promotions__hero-cta, .page-promotions__offer-cta, .page-promotions__bottom-cta, .page-promotions__final-cta {
    display: inline-block;
    background-color: #E0B000;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 176, 0, 0.4);
}

.page-promotions__hero-cta:hover, .page-promotions__offer-cta:hover, .page-promotions__bottom-cta:hover, .page-promotions__final-cta:hover {
    background-color: #f5db9c;
    transform: translateY(-3px);
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #0A2463;
    text-align: center;
    margin: 60px 0 30px;
    font-weight: bold;
}

.page-promotions__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    color: #555555;
}

.page-promotions__why-choose-section, .page-promotions__current-offers-section, .page-promotions__how-to-claim-section, .page-promotions__terms-conditions-section, .page-promotions__faq-section, .page-promotions__cta-final-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-promotions__features-grid, .page-promotions__offers-grid, .page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-promotions__feature-card, .page-promotions__offer-card, .page-promotions__step-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__feature-card:hover, .page-promotions__offer-card:hover, .page-promotions__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.page-promotions__feature-image, .page-promotions__offer-image {
    width: 100%;
    height: 250px; /* Consistent height for cards */
    object-fit: cover;
    border-bottom: 1px solid #eeeeee;
}

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

.page-promotions__feature-title, .page-promotions__offer-title, .page-promotions__step-title {
    font-size: 1.8em;
    color: #0A2463;
    margin: 20px 0 15px;
    font-weight: bold;
}

.page-promotions__feature-text, .page-promotions__offer-text, .page-promotions__step-text {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-promotions__step-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 30px auto 20px;
}

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-promotions__terms-item {
    background-color: #f9f9f9;
    border-left: 5px solid #E0B000;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1em;
    color: #444444;
    line-height: 1.6;
    border-radius: 8px;
}

.page-promotions__terms-link {
    display: block;
    text-align: center;
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-promotions__terms-link:hover {
    color: #E0B000;
}

.page-promotions__faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px;
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none; /* Hidden by default, toggled by JS */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }

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

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: var(--header-offset, 200px); /* Adjust for mobile header offset */
    }

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

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

    .page-promotions__hero-container {
        padding: 40px 15px;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
        margin: 40px 0 20px;
    }

    .page-promotions__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-promotions__features-grid, .page-promotions__offers-grid, .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__feature-title, .page-promotions__offer-title, .page-promotions__step-title {
        font-size: 1.5em;
    }

    .page-promotions__feature-image, .page-promotions__offer-image {
        height: 200px;
    }
    
    .page-promotions__step-icon {
        width: 120px;
        height: 120px;
    }

    /* Ensure all content area images are at least 200px */
    .page-promotions img {
        min-width: 200px;
        min-height: 200px;
    }
}