
input{
    border: 1px rgb(95, 95, 95) solid;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 20px;
    padding: 5px;
    width: 43vw;
    text-align: center;
}
section{
    height: auto;
    flex-direction: column;
}
textarea{
    margin-bottom: 5px;
    border-radius: 20px;
    width: 43vw;
    height: 3vh;
    height: calc(var(--vh, 1vh) * 3);

}
button{
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 50px;
    padding: 8px;
    padding-left: 14px;
    padding-right: 14px;
    border: 1px rgb(95, 95, 95) solid;
    background-color: rgb(243, 243, 243);

}
button:hover{
    background-color: rgb(211, 209, 209);

}
.form{
    margin-right:20px;
    margin-bottom: 30px;
    width:45%;
    padding: 10px;
    border: 1px rgb(95, 95, 95) solid;
    border-radius:20px;

}
.contact {
    width:50%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item label {
    margin-right: 15px; 
    white-space: nowrap;
    flex-shrink: 0; 
}

.contact-item p, .contact-item a {
    margin: 0; 
}

.content2{
    width:50%;
    margin-top: 0;
    margin:5px;
}
.content2 p{
    margin:0;
}
h1{
    width:50%;
    
    margin-top: 100px;
    margin-bottom: 10px;
}
#consentPopup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    box-shadow: 0px -2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}
@media only screen and (max-width:897px){
    .content{
        margin-right: 0;
        align-items: center;
    }
    .contact{
        width:80%;
    }
    .form{
        width:55%;

    }
    input{
        width:53vw;
    }
    textarea{
        width:53vw;
    }
}