        /* Consultation form styles */
        .consultation-form {
            display: flex;
            height: 80px;
            max-width: 1200px;
            background-color: #f5f5f5;
            border-radius: 4px;
        }
        .icon, .bfield, .bfield input, .bfield select {
            background-color: #f5f5f5;
        }
        .consultation-form .promo {
            background-color: #f5f5f5;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 1.1rem;
            font-weight: bold;
            line-height: 1.3;
        }
        .consultation-form .promo span {
            font-size: 1.4em;
        }
        .consultation-form .fields {
            flex: 1;
            display: flex;
            background-color: #f5f5f5;
        }
        .consultation-form .field {
            position: relative;
            flex: 1;
        }
        .consultation-form .field:not(:last-child) {
            border-right: 1px solid #ddd;
        }
        .consultation-form .field input,
        .consultation-form .field select {
            border: none;
            outline: none;
            font-size: .85rem;
            color: #333;
            background: #f5f5f5;
            width: -webkit-fill-available;            
        }    
        .consultation-form .field select {
            -webkit-appearance: none;
               -moz-appearance: none;
                    appearance: none;
            background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23777" viewBox="0 0 320 512"><path d="M31.5 192h257c17.8 0 26.7 21.5 14.1 34.1l-128.5 128c-7.8 7.8-20.5 7.8-28.3 0l-128.5-128C4.8 213.5 13.7 192 31.5 192z"/></svg>');
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 0.65em;
            
        }
        .consultation-form .field .fa {
            position: absolute;
            top: 50%;
            left: 1rem;
            transform: translateY(-50%);
            color: #aaa;
            font-size: .85rem;
        }
        .consultation-form .submit-btn,
        .consultation-form-bottom .submit-btn {
            background: #378E53;
            color: #f5f5f5;
            border: none;
            font-size: .85rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.2s;
            height: 80px;
            max-height: 200px;
            padding: 0 30px;
        }
        .consultation-form .submit-btn:hover,
        .consultation-form-bottom .submit-btn:hover {
            background: #2e713f;
        }
        .field{
            outline: 2px solid #999; 
            background-color: #f5f5f5;
            margin: auto 5px; 
            border-radius: 3px;
            display: flex;
            height: 40px;            
        }


        /* BOTTOM FORM */
        .consultation-form-bottom {
            display: flex;
            gap: 10px;
            flex-direction: column;
            flex-wrap: nowrap;
            max-width: 800px;
            align-items: center;
        }
        .bfield{
            display: flex;
            width: 270px;
            margin: 5px;
            border: 3px solid #999;
            border-radius: 3px;
            align-content: unset;
            
        }
        .bfield input,
        .bfield select {
            width: -webkit-fill-available;
            border: none;
            outline: none;
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
        }
        .bsubmit-btn {
            background: black;
            color: #f5f5f5;
            border: none;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.2s;
            height: 45px;
            margin: auto 5px;
            width: 300px;
        }

        