.page-promo {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.page-promo__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__section-text {
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-promo__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #000000; /* Dark background for hero section */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0; /* Adjust padding as needed, considering the header offset on main */
}

.page-promo__hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Darken image for text readability */
    z-index: 1;
    filter: none !important; /* Ensure no image filter is applied */
}

.page-promo__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Login button color for title emphasis */
    line-height: 1.2;
}

.page-promo__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-promo__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-promo__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promo__button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-promo__button--register:hover {
    background-color: #f0f0f0;
}

.page-promo__button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo__button--login:hover {
    background-color: #e0a53a;
}

/* Overview Section */
.page-promo__overview-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

/* Promotions Grid */
.page-promo__promotions-grid {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-promo__card {
    background-color: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promo__card:hover {
    transform: translateY(-5px);
}

.page-promo__card-image {
    width: 100%;
    height: 250px; /* Ensure images are not small icons */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
    filter: none !important; /* Ensure no image filter is applied */
}

.page-promo__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promo__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promo__card-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promo__card-features li {
    font-size: 0.9em;
    color: #444444;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.page-promo__card-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FCBC45;
}

.page-promo__button--claim,
.page-promo__button--secondary {
    display: block;
    width: fit-content;
    margin-top: auto; /* Push button to bottom */
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promo__button--claim:hover,
.page-promo__button--secondary:hover {
    background-color: #e0a53a;
}

/* FAQ Section */
.page-promo__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-promo__faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
}

.page-promo__faq-answer {
    font-size: 1em;
    color: #555555;
    display: none; /* Hidden by default */
}

/* Call to Action Section */
.page-promo__call-to-action-section {
    padding: 80px 0;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.page-promo__call-to-action-section .page-promo__section-title {
    color: #FCBC45;
}

.page-promo__call-to-action-section .page-promo__section-intro {
    color: #f0f0f0;
    margin-bottom: 40px;
}

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

.page-promo__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Terms Section */
.page-promo__terms-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-promo__terms-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__terms-list li {
    margin-bottom: 15px;
    font-size: 1em;
    color: #444444;
}

.page-promo__terms-list li strong {
    color: #000000;
}

.page-promo__more-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

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

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

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

    .page-promo__button {
        width: 80%;
        margin: 0 auto;
    }

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

    .page-promo__grid {
        grid-template-columns: 1fr;
    }

    .page-promo__card-image {
        height: 200px; /* Maintain minimum image height */
        min-width: 200px;
        min-height: 200px;
    }

    .page-promo__card-title {
        font-size: 1.3em;
    }

    .page-promo__faq-question {
        font-size: 1.1em;
    }

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

    .page-promo__button--large {
        width: 80%;
        margin: 0 auto;
    }

    .page-promo__more-info {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Mobile content area images must not overflow */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not small */
    .page-promo__card-image, .page-promo__hero-image {
        min-width: 200px;
        min-height: 200px;
    }
}