.page-promo {
    color: #333333; /* Dark text for light background */
    background-color: #FFFFFF; /* Ensures a consistent light background */
    padding-top: var(--header-offset, 120px); /* Fallback for header offset */
}

.page-promo__hero-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promo__hero-container {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #FFFFFF;
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-promo__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for primary CTA */
    color: #000000;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__cta-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

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

.page-promo__current-promos-section,
.page-promo__how-to-claim-section,
.page-promo__terms-conditions-section,
.page-promo__why-291lodi-section,
.page-promo__deep-dive-section,
.page-promo__cta-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-promo__section-description,
.page-promo__text-content {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.page-promo__promos-grid,
.page-promo__steps-grid,
.page-promo__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promo__promo-card,
.page-promo__step-card,
.page-promo__feature-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promo__promo-card:hover,
.page-promo__step-card:hover,
.page-promo__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promo__promo-image,
.page-promo__feature-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promo__card-title,
.page-promo__step-title,
.page-promo__feature-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promo__card-description,
.page-promo__step-description,
.page-promo__feature-description {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__card-button,
.page-promo__step-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-promo__card-button:hover,
.page-promo__step-button:hover {
    background-color: #333333;
}

.page-promo__terms-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    text-align: center;
}

.page-promo__terms-list li {
    margin-bottom: 10px;
}

.page-promo__terms-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-promo__terms-link:hover {
    color: #FCBC45;
    text-decoration: underline;
}

.page-promo__cta-button--small {
    padding: 12px 30px;
    font-size: 1em;
    background-color: #000000;
    color: #FFFFFF;
}

.page-promo__cta-button--small:hover {
    background-color: #333333;
}

.page-promo__deep-dive-section {
    background-color: #F8F8F8;
}

.page-promo__sub-section-title {
    font-size: 2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-promo__bullet-list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555555;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-promo__bullet-list li {
    margin-bottom: 10px;
}

.page-promo__cta-section {
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
}

.page-promo__cta-section .page-promo__section-title {
    color: #FFFFFF;
}

.page-promo__cta-section .page-promo__section-description {
    color: #E0E0E0;
}

.page-promo__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-promo__cta-button--register {
    background-color: #FFFFFF; /* Register color */
    color: #000000;
}

.page-promo__cta-button--register:hover {
    background-color: #E0E0E0;
    transform: translateY(-3px);
}

.page-promo__cta-button--login {
    background-color: #FCBC45; /* Login color */
    color: #000000;
}

.page-promo__cta-button--login:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }

    .page-promo__hero-description {
        font-size: 1.1em;
    }

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

@media (max-width: 768px) {
    .page-promo__hero-title {
        font-size: 2.5em;
    }

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

    .page-promo__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .page-promo__current-promos-section,
    .page-promo__how-to-claim-section,
    .page-promo__terms-conditions-section,
    .page-promo__why-291lodi-section,
    .page-promo__deep-dive-section,
    .page-promo__cta-section {
        padding: 30px 15px;
        margin: 20px auto;
    }

    .page-promo__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promo__promos-grid,
    .page-promo__steps-grid,
    .page-promo__features-grid {
        grid-template-columns: 1fr;
    }

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

    .page-promo__cta-button--register,
    .page-promo__cta-button--login {
        width: 80%;
        margin: 0 auto;
    }

    /* Ensure content images do not overflow */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }

    .page-promo__promo-image, .page-promo__feature-image {
        height: auto; /* Allow height to adjust naturally */
        min-height: 200px; /* Ensure minimum size */
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }

    .page-promo__hero-description {
        font-size: 0.9em;
    }

    .page-promo__cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }

    .page-promo__section-title {
        font-size: 1.5em;
    }

    .page-promo__sub-section-title {
        font-size: 1.6em;
    }

    .page-promo__text-content, .page-promo__bullet-list {
        font-size: 0.95em;
    }
}