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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(135deg,#eef5fb,#d8e7f4);
    color:#333;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.container{
    background:#fff;
    width:90%;
    max-width:700px;
    padding:50px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.logo{
    width:320px;
    max-width:100%;
    margin-bottom:40px;
}

h1{
    color:#d40000;
    font-size:2.2rem;
    margin-bottom:20px;
}

.subtitle{
    font-size:1.3rem;
    color:#666;
    margin-bottom:25px;
}

p{
    line-height:1.7;
    font-size:1.05rem;
}

.divider{
    width:120px;
    height:4px;
    background:#d40000;
    margin:40px auto;
    border-radius:10px;
}

.contact{
    margin-bottom:25px;
}

.button{
    display:inline-block;
    padding:14px 34px;
    background:#d40000;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.button:hover{
    background:#a80000;
    transform:translateY(-2px);
}

@media(max-width:600px){

    .container{
        padding:35px 25px;
    }

    h1{
        font-size:1.8rem;
    }

    .subtitle{
        font-size:1.1rem;
    }

}