/* CTA Oferta – tło na szerokość kontenera (bez 100vw = brak poziomego scrolla); treść wyśrodkowana */
.cta-oferta-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0 !important;
    margin-block-start: 0 !important;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    box-sizing: border-box;
}

.cta-oferta {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 4.375rem 0;
    background-color: #23c767;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nakładka graficzna – na wierzchu koloru, pod treścią (np. wzór kropek) */
.cta-oferta-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: auto;
    background-position: 0 0;
    background-repeat: repeat;
    pointer-events: none;
}

.cta-oferta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1.875rem;
    text-align: center;
}

.cta-oferta-heading {
    box-sizing: border-box;
    display: block;
    margin: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.95);
    font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
}

/* Ten sam wygląd co globalny .cta-button (style.css): bez border-radius, obramowanie */
.cta-oferta-content .cta-button {
    flex-shrink: 0;
    margin: 0;
    white-space: normal;
    text-align: center;
}

