body{
    margin:0;
    font-family:Arial;
    background:
#f0f2f5;
}
header{
    background:
#0077ff;
    color:white;
    text-align:center;
    padding:20px;
}
h1{
    margin:0;
    font-size:40px;
}
nav{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:20px;
}
nav button{
    padding:15px 25px;
    border:none;
    background:
#0077ff;
    color:white;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
}
nav button:hover{
    background:
#005ccc;
}
section{
    width:90%;
    margin:auto;
}
#map{
    height:400px;
    border-radius:15px;
    margin-bottom:20px;
}
.botones{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}
button{
    padding:10px 20px;
    border:none;
    border-radius:10px;
    background:
#0077ff;
    color:white;
    cursor:pointer;
}
button:hover{
    background:
#005ccc;
}
form{
    display:flex;
    flex-direction:column;
    gap:15px;
}
input, textarea{
    padding:10px;
    border-radius:10px;
    border:1px solid gray;
}
textarea{
    height:120px;
}
footer{
    margin-top:40px;
    background:#222;
    color:white;
    text-align:center;
    padding:15px;
}