body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#f5f5f5;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.container{
    text-align:center;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    max-width:400px;
}

.title{
    font-size:32px;
    color:#b22222;
    margin-bottom:20px;
}

.logo img{
    width:100%;
    max-width:300px;
    border-radius:10px;
}

.phone{
    font-size:20px;
    margin:20px 0;
    color:#333;
}

.order-btn{
    display:inline-block;
    padding:15px 35px;
    background:#d62828;
    color:white;
    text-decoration:none;
    font-size:18px;
    border-radius:8px;
    transition:0.3s;
}

.order-btn:hover{
    background:#a4161a;
}