.consult-section {
    padding: 40px 20px;
    background-color: #2a2c35;
    border-radius: 40px;
  }
  
  .consult-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .form-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 30px;
    position: relative;
    overflow: hidden;
  }
  
  .consult-left {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px; /* Пространство между элементами */
  }
  
  .consult-left h2 {
    color: #2a2c35;
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .consult-left p {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  /* Стрелка */
  .arrow-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #2a2c35;
    margin: 20px 0; /* Отступы сверху и снизу */
  }
  
  /* Кнопка */
  .consult-btn {
    display: inline-block;
    background: #F8B69D;
    color: white;
    padding: 18px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    order: 3; /* Гарантируем порядок элементов */
  }
  
  .consult-btn:hover {
    transform: translateY(-3px);
  }
  
  .consult-right {
    flex: 1;
    position: relative;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
  }
  
  /* Заменяем background-image на тег img */
  .consult-right img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Изображение заполняет блок без искажений */
    object-position: center;
  }
  
  @media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }
  
    .consult-left {
        
        text-align: center;
    }
  
    .arrow-down {
        margin-left: auto;
        margin-right: auto;
    }
  
    .consult-right {
        min-height: 200px;
        background-position: center;
    }
  }
  
  @media (max-width: 480px) {
    .consult-left h2 {
        font-size: 24px;
    }
  
    .consult-left p {
        font-size: 16px;
    }
  
    .form-container {
        padding: 20px;
    }
  }