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

.page-promo-latest-offers__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding-bottom: 60px;
    background: #000000; /* Dark background for hero */
    color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-promo-latest-offers__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3; /* Subtle background image */
}

.page-promo-latest-offers__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-promo-latest-offers__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

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

.page-promo-latest-offers__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #F0F0F0;
}

.page-promo-latest-offers__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promo-latest-offers__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-promo-latest-offers__button--register {
    background-color: #FFFFFF; /* Register color */
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-promo-latest-offers__button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.page-promo-latest-offers__button--login {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo-latest-offers__button--login:hover {
    background-color: transparent;
    color: #FCBC45;
    transform: translateY(-3px);
}

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

.page-promo-latest-offers__section-title {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-promo-latest-offers__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo-latest-offers__offers-grid-section {
    padding: 60px 0;
    background-color: #F8F8F8;
}

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

.page-promo-latest-offers__offer-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo-latest-offers__offer-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo-latest-offers__offer-text {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo-latest-offers__offer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #333333;
}

.page-promo-latest-offers__offer-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-promo-latest-offers__offer-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}

.page-promo-latest-offers__button--claim {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    width: 100%;
}

.page-promo-latest-offers__button--claim:hover {
    background-color: #000000;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-promo-latest-offers__how-to-claim-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-promo-latest-offers__claim-steps {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promo-latest-offers__step-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-promo-latest-offers__step-item:hover {
    background-color: #EDEDED;
}

.page-promo-latest-offers__step-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.page-promo-latest-offers__step-title::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #FCBC45;
    color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    font-weight: bold;
}

.page-promo-latest-offers__step-text {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
}

.page-promo-latest-offers__step-text a {
    color: #000000;
    text-decoration: underline;
}

.page-promo-latest-offers__step-text a:hover {
    color: #FCBC45;
}

.page-promo-latest-offers__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-promo-latest-offers__terms-section {
    padding: 80px 0;
    background-color: #F0F0F0;
}

.page-promo-latest-offers__terms-content {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: #333333;
}

.page-promo-latest-offers__terms-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-promo-latest-offers__terms-content strong {
    color: #000000;
}

.page-promo-latest-offers__terms-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-promo-latest-offers__terms-list li {
    margin-bottom: 10px;
}

.page-promo-latest-offers__terms-content a {
    color: #000000;
    text-decoration: underline;
}

.page-promo-latest-offers__terms-content a:hover {
    color: #FCBC45;
}

.page-promo-latest-offers__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-promo-latest-offers__faq-items {
    margin-top: 50px;
}

.page-promo-latest-offers__faq-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-promo-latest-offers__faq-question {
    font-size: 1.4em;
    color: #000000;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promo-latest-offers__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-promo-latest-offers__faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promo-latest-offers__faq-answer p {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    padding-bottom: 20px;
}

.page-promo-latest-offers__faq-answer.open {
    max-height: 500px; /* Adjust as needed for content */
    padding-top: 10px;
}

.page-promo-latest-offers__cta-section {
    padding: 80px 0;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.page-promo-latest-offers__cta-section .page-promo-latest-offers__section-title {
    color: #FCBC45;
}

.page-promo-latest-offers__cta-section .page-promo-latest-offers__section-description {
    color: #F0F0F0;
}

.page-promo-latest-offers__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo-latest-offers__button--large:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .page-promo-latest-offers__hero-title {
        font-size: 2.8em;
    }
    .page-promo-latest-offers__hero-description {
        font-size: 1.1em;
    }
    .page-promo-latest-offers__section-title {
        font-size: 2.2em;
    }
    .page-promo-latest-offers__offer-title {
        font-size: 1.6em;
    }
    .page-promo-latest-offers__offer-image {
        height: 180px;
    }
    .page-promo-latest-offers__faq-question {
        font-size: 1.2em;
    }
    /* Ensure all images within main content are responsive */
    .page-promo-latest-offers img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-promo-latest-offers__hero-section {
        padding-bottom: 40px;
    }
    .page-promo-latest-offers__hero-title {
        font-size: 2.2em;
    }
    .page-promo-latest-offers__hero-description {
        font-size: 1em;
    }
    .page-promo-latest-offers__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo-latest-offers__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    .page-promo-latest-offers__section-title {
        font-size: 1.8em;
        padding-top: 30px;
    }
    .page-promo-latest-offers__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promo-latest-offers__offers-grid-section,
    .page-promo-latest-offers__how-to-claim-section,
    .page-promo-latest-offers__terms-section,
    .page-promo-latest-offers__faq-section,
    .page-promo-latest-offers__cta-section {
        padding: 40px 0;
    }
    .page-promo-latest-offers__offer-card {
        padding: 20px;
    }
    .page-promo-latest-offers__offer-title {
        font-size: 1.4em;
    }
    .page-promo-latest-offers__offer-image {
        height: 160px;
    }
    .page-promo-latest-offers__claim-steps {
        margin-top: 30px;
    }
    .page-promo-latest-offers__step-title {
        font-size: 1.3em;
    }
    .page-promo-latest-offers__terms-content {
        padding: 25px;
    }
    .page-promo-latest-offers__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promo-latest-offers__faq-answer p {
        padding-bottom: 15px;
    }
    /* Critical: Prevent horizontal overflow for all images in mobile view */
    .page-promo-latest-offers img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-promo-latest-offers__container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-promo-latest-offers__hero-title {
        font-size: 1.8em;
    }
    .page-promo-latest-offers__hero-description {
        font-size: 0.9em;
    }
    .page-promo-latest-offers__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promo-latest-offers__section-title {
        font-size: 1.6em;
    }
    .page-promo-latest-offers__offer-image {
        height: 140px;
    }
    .page-promo-latest-offers__offer-title {
        font-size: 1.2em;
    }
    .page-promo-latest-offers__step-title {
        font-size: 1.1em;
    }
    .page-promo-latest-offers__button--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}