/* =========================================
   Offer Section – MM Stimme Modern
   ========================================= */

#offer {
    padding: 80px 0;
    position: relative;
}

/* =========================================
   Left Content
   ========================================= */

#offer .offer_outer .content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--ci-primary);
    margin-bottom: 20px;
}

#offer .offer_outer .content p {
    font-size: 16px;
    color: var(--ci-gray);
    margin-bottom: 25px;
}

/* CTA Buttons */
#offer .offer_outer .content .offer_btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* =========================================
   Right Image
   ========================================= */

#offer .offer_outer .image {
    position: relative;
}

#offer .offer_outer .image img {
    max-width: 100%;
    display: block;
    margin-left: auto;
}

/* Floating Accent Shape */
#offer .offer_outer .image::after {
    content: "";
    height: 160px;
    width: 160px;
    background: var(--ci-accent);
    position: absolute;
    bottom: -20px;
    right: -20px;
    border-radius: 50% 50% 4% 50%;
    z-index: -1;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 992px) {
    #offer .offer_outer .image img {
        margin: -120px auto 0;
    }
}

@media (max-width: 768px) {
    #offer .offer_outer .content h3 {
        font-size: 28px;
    }
}
