
.leftblock {float: left; width: 50%;}
.treatments-block {background:white; width:100%; padding:20px;}
.tblock {float:left; width:32%; margin: 0.6%;}
a.gdpr {color:white; font-size:14px; margin-top:10px; display:block; font-weight: 400!important;}
				
/* Container */
.contact-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    background: #E9E9E9;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    font-family: 'Arial', sans-serif;
}

/* Floating label wrapper */
.floating-label {
    position: relative;
    margin-bottom: 20px;
}

/* Inputs & Textarea */
.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 14px 14px 14px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    background: none;
    outline: none;
}

/* Labels */
.floating-label label {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #999;
    font-size: 14px;
    pointer-events: none;
    transition: 0.2s ease all;
}

/* Move label when input has value or focus */
.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #4f46e5;
    background: #fff;
    padding: 0 4px;
}

/* Textarea styling */
.floating-label textarea {
    min-height: 120px;
    resize: vertical;
}

/* Button */
.contact-form button {
    width: 100%;
    background: #000000;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease background;
}

.contact-form button:hover {
    background: #83A14C;
}

/* Result message */
#formResult {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}

input[type="text"], input[type="email"], input[type="tel"], textarea{
    background: #F6F6F6!important;
}

/* Responsive */

@media (max-width: 1400px) {
	
.tblock {float:left; width:49%; margin: 0.5%;}

}

@media (max-width: 600px) {
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 800px) {
	
	.tblock  {float: none; width:98%!important; margin: 10px auto;}
	
}