/* ================= CTA OFFERTEN ================= */

.cta-offerte {
    background: #ffffff;
    padding: 0px 24px 100px 24px;  /* mehr unten */
    margin-bottom: 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;   /* <<< ALLES als Einheit zentrieren */
    gap: 40px;                 /* <<< Abstand Text ↔ Button */
}

.cta-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 17px;
    max-width: 640px;
    line-height: 1.6;
    color: #333;
}

.cta-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #333333;
}

/* ================= CTA RESPONSIVE ================= */

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-text h2 {
        font-size: 26px;
    }

    .cta-button {
        margin-top: 24px;
    }
}
