*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f8f9fb;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    text-align:center;
}

.container{
    max-width:500px;
    padding:30px;
}

.logo{
    width:120px;
    margin-bottom:20px;
}

h1{
    font-size:48px;
    color:#0F1F3A;
}

.tagline{
    color:#777;
    margin:15px 0;
}

h2{
    margin-top:30px;
    color:#C9A14A;
}

.desc{
    margin:20px 0;
    color:#555;
    line-height:1.6;
}

.btn{
    display:inline-block;
    padding:14px 35px;
    background:#0F1F3A;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.btn:hover{
    background:#C9A14A;
}