/* Основные стили для нового блока */
.consultation-block {
    background-color: #1a2b3c;
    /* Темно-синий фон, как в футере или блоках на сайте */
    padding: 50px 30px;
    color: white;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.consultation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    /* Для мобильных */
}

/* Левая часть с текстом */
.consultation-text {
    flex: 2 1 500px;
}

.consultation-title {
    font-size: 32px;
    font-weight: 700;
    /* Жирный шрифт */
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
}

.consultation-description {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
}

.consultation-description p {
    margin-bottom: 5px;
}

/* Правая часть с кнопкой */
.consultation-action {
    flex: 1 1 250px;
    text-align: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .consultation-block {
        padding: 40px 20px;
    }

    .consultation-description {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-consultation {
        white-space: normal;
        padding: 15px 30px;
        font-size: 16px;
    }

    .consultation-title {
        font-size: 28px;
    }
}