:root {
    --transition: all 0.2s ease;
}

.consultation-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.free-consultation, .full-engagement {
    width: 50%;
}

.form {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


input,
textarea,
select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

textarea {
    resize: none;
}

.needs,
.duration-options,
.location-options {
    display: flex;
    gap: 30px;
    justify-content: start;
    
}

.needs input,
.duration-options input,
.location-options input {
    width: auto;
} 

@media only screen and (max-width: 911px) {

    .consultation-container {
        flex-direction: column;
    }

    .free-consultation, .full-engagement {
        width: 100%;
    }
}