.newsletter-footer-box {
    width: 100%;
    max-width: 1140px;
    box-sizing: border-box;
    margin: 32px auto -60px auto;
    padding: 10px 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(23,29,28,0.2);
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
}
.newsletter-footer-img {
    flex: 0 0 70%;
    max-width: 70vw;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsletter-footer-form {
    flex: 0 0 30%;
    max-width: 30vw;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .newsletter-footer-box {
        flex-direction: column;
        gap: 12px;
        padding: 16px 8px;
    }
    .newsletter-footer-img, .newsletter-footer-form {
        max-width: 100vw;
        flex: 1 1 100%;
    }
    .newsletter-footer-img img {
        max-width: 90vw;
    }
}