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

body{
background:#fff;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
padding:20px;
}

.container{
max-width:650px;
text-align:center;
}

.logo{
width:150px;
margin-bottom:25px;
}

h1{
font-size:52px;
color:#5B5BD6;
margin-bottom:15px;
}

.subtitle{
font-size:24px;
color:#222;
margin-bottom:20px;
font-weight:bold;
}

.desc{
font-size:18px;
line-height:1.8;
color:#666;
margin-bottom:40px;
}

.buttons{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.buttons a{
text-decoration:none;
background:#5B5BD6;
color:white;
padding:14px 24px;
border-radius:12px;
font-weight:bold;
transition:.2s;
}

.buttons a:hover{
background:#4c4cbc;
}