*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f5f5f5;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    color:#555;

}

.contenedor{

    width:90%;
    max-width:700px;

    background:white;

    padding:40px;

    border-radius:12px;

    text-align:center;

    box-shadow:0px 10px 30px rgba(0,0,0,.15);

}

.logo{

    width:220px;

    margin-bottom:30px;

}

h1{

    color:#d71920;

    margin-bottom:20px;

}

p{

    font-size:18px;

    margin-bottom:40px;

    line-height:1.6;

}

.contacto{

    text-align:left;

}

.contacto h2{

    text-align:center;

    margin-bottom:20px;

}

input,
textarea{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

}

textarea{

    resize:vertical;

    min-height:140px;

}

button{

    width:100%;

    background:#d71920;

    color:white;

    border:none;

    padding:15px;

    font-size:18px;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#b80000;

}

@media(max-width:768px){

    .contenedor{

        padding:25px;

    }

    h1{

        font-size:28px;

    }

    p{

        font-size:16px;

    }

    .logo{

        width:180px;

    }

}


.info-contacto{
    margin:30px 0;
    text-align:center;
    line-height:1.8;
    color:#555;
}

.info-contacto a{
    color:#d71920;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.info-contacto a:hover{
    color:#a60000;
    text-decoration:underline;
}