/* NSA_ Блок-призыв с кнопкой формы обратной связи (п.7 ТЗ) — в стиле сайта */

.nsa-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px 28px;
    max-width: 1200px;
    margin: 32px auto;
    padding: 28px 34px;
    border: 1px solid #e6eadb;
    border-radius: 16px;
    background: #f4f6ec;
    color: #2d2d2d;
    font-family: Montserrat, Arial, sans-serif;
    box-sizing: border-box;
}

.nsa-cta__title {
    flex: 1 1 320px;
    min-width: 0;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.nsa-cta__button {
    flex: 0 0 auto;
    min-height: 52px;
    padding: 12px 32px;
    border: 0;
    border-radius: 8px;
    background: #677a1c;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    cursor: pointer;
    transition: background-color .15s ease, transform .1s ease;
}

.nsa-cta__button:hover {
    background: #56661a;
}

.nsa-cta__button:active {
    transform: translateY(1px);
}

@media (max-width: 700px) {
    .nsa-cta {
        margin: 24px auto;
        padding: 22px 20px;
    }

    .nsa-cta__title {
        flex: 1 1 100%;
        font-size: 18px;
    }

    .nsa-cta__button {
        flex: 1 1 100%;
        width: 100%;
    }
}
