.page-promo {
    color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.page-promo__hero-container {
    position: relative;
    width: 100%;
    max-width: 1920px; /* Constrain max width for image */
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-promo__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    max-width: 90%;
    z-index: 1;
    padding: 20px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    color: #FFFFFF;
}

.page-promo__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
}

.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;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    min-width: 150px;
    text-align: center;
}

.page-promo__button--register {
    background-color: #FFFFFF; /* Custom color for Register */
    color: #000000;
    border: 2px solid #FFFFFF;
}

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

.page-promo__button--login {
    background-color: #FCBC45; /* Custom color for Login */
    color: #000000;
    border: 2px solid #FCBC45;
}

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

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

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

.page-promo__section-description {
    font-size: 1.1em;
    color: #333333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

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

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

.page-promo__overview-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__overview-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-promo__overview-card-text {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.page-promo__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo__button--small:hover {
    background-color: #e0a53b;
    color: #000000;
}

.page-promo__featured-section {
    padding: 60px 0;
}

.page-promo__promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 40px;
}

.page-promo__promo-item {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.page-promo__promo-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.page-promo__promo-content {
    padding: 30px;
    flex-grow: 1;
}

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

.page-promo__promo-text {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.page-promo__promo-features li {
    font-size: 1em;
    color: #333333;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

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

.page-promo__claim-guide {
    background-color: #f0f0f0;
    padding: 60px 0;
}

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

.page-promo__step-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-promo__step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promo__step-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promo__step-text {
    font-size: 0.95em;
    color: #555555;
    line-height: 1.5;
}

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

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

.page-promo__why-us-section {
    padding: 60px 0;
}

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

.page-promo__benefit-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__benefit-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-promo__benefit-text {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
    text-align: left;
}

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

.page-promo__faq-items {
    margin-top: 40px;
}

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

.page-promo__faq-question {
    font-size: 1.3em;
    color: #000000;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.page-promo__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promo__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promo__faq-answer p {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
    padding-bottom: 20px;
}

.page-promo__faq-answer.open {
    max-height: 300px; /* Adjust based on expected content height */
    padding-top: 10px;
}

.page-promo__cta-final {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #000000, #333333);
    color: #FFFFFF;
}

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

.page-promo__cta-final .page-promo__section-description {
    color: #f0f0f0;
}

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

.page-promo__button--outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-promo__button--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

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

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

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

    .page-promo__overview-card-image, .page-promo__promo-image, .page-promo__step-image, .page-promo__benefit-image {
        height: 200px;
    }

    .page-promo__promo-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        min-height: 400px;
    }
    .page-promo__hero-image {
        filter: brightness(0.5); /* Darker for mobile text readability */
    }
    .page-promo__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-promo__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-promo__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__button {
        width: 100%;
        max-width: 250px;
    }

    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__section-description {
        font-size: 0.95em;
    }

    .page-promo__overview-cards, .page-promo__benefits-grid, .page-promo__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promo__promo-item {
        flex-direction: column;
    }

    .page-promo__promo-image {
        height: 250px;
    }

    .page-promo__promo-content {
        padding: 20px;
    }

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

    .page-promo__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

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

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

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.7em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__section-title {
        font-size: 1.6em;
    }
    .page-promo__overview-card-image, .page-promo__promo-image, .page-promo__step-image, .page-promo__benefit-image {
        height: 180px;
    }
    .page-promo__button {
        max-width: 100%;
    }
}