/* Style dla desktopu */
.form-5
width: 100% important

.desktop-row {
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
}

.left-div.offer, .right-div.offer {
    width: 45% !important;
    margin-bottom: 20px !important;
}

/* Style dla urządzeń mobilnych */
.mobile-row {
    display: flex !important;
    flex-direction: column !important;
}

.mobile-row .left-div.offer,
.mobile-row .right-div.offer {
    width: 70% !important;
}

/* Ukryj osadzone formularze na początku */
.form-content.hidden.offer {
    display: none !important;
}

.desktop-row {
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
}

.left-div.offer,
.right-div.offer {
    width: 45% !important;
    margin-bottom: 20px !important;
}

/* Style dla urządzeń mobilnych */
@media screen and (max-width: 767px) {
    .desktop-row {
        display: block !important; /* Zmiana na blok na urządzeniach mobilnych */
    }

    .left-div.offer,
    .right-div.offer {
        width: 100% !important;
    }
}
}