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

body{
    min-height:100vh;

    /* Option 1: soft gradient */
    background: linear-gradient(135deg,#f9f7f4,#ffffff);

    /* Option 2: uncomment and add bg.jpg */
    /*
    background-image:url("bg.jpg");
    background-size:cover;
    background-position:center;
    */

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;

    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.25);
    backdrop-filter:blur(5px);
}

.container{
    position:relative;
    z-index:1;

    max-width:500px;
    width:100%;

    background:rgba(255,255,255,.85);

    border-radius:20px;

    padding:50px 35px;

    text-align:center;

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

.logo{
    width:140px;
    margin-bottom:30px;
}

h1{
    font-size:1.6rem;
    color:#1F3A5F;
    margin-bottom:20px;
}

p{
    color:#666;
    line-height:1.7;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.btn{
    text-decoration:none;
    padding:16px;
    border-radius:12px;
    font-weight:600;

    transition:.3s;
}

.primary{
    background:#C8A45D;
    color:white;
}

.primary:hover{
    background:#1F3A5F;
}

.secondary{
    background:#25D366;
    color:white;
}

.secondary:hover{
    opacity:.9;
}

.phone{
    margin-top:30px;
    color:#555;
    font-size:1rem;
}

@media(max-width:600px){

    .container{
        padding:40px 25px;
    }

    h1{
        font-size:1.7rem;
    }

}