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

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:linear-gradient(135deg,#0f172a,#1e293b);

    color:#ffffff;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:30px;

}

.container{

    width:100%;

    max-width:900px;

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

    backdrop-filter:blur(10px);

    border-radius:20px;

    padding:55px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.40);

}

.company-name{

    font-size:2.2rem;

    font-weight:bold;

    letter-spacing:1px;

    margin-bottom:12px;

}

.tagline{

    color:#8fd4ff;

    font-size:1.2rem;

    margin-bottom:35px;

}

.owner-image{

    width:100%;

    max-width:520px;

    margin:0 auto 35px;

}

.owner-image img{

    display:block;

    width:100%;

    height:auto;

    border-radius:16px;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

h1{

    font-size:2.5rem;

    margin-bottom:25px;

}

h2{

    margin-top:35px;

    margin-bottom:20px;

    color:#8fd4ff;

}

p{

    font-size:1.1rem;

    line-height:1.8;

    margin-bottom:22px;

    color:#f3f4f6;

}

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:35px;

}

.btn{

    text-decoration:none;

    padding:18px 34px;

    border-radius:40px;

    font-weight:bold;

    transition:.3s ease;

    min-width:220px;

}

.whatsapp{

    background:#25D366;

    color:white;

}

.whatsapp:hover{

    transform:translateY(-3px);

    background:#1eb957;

}

.call{

    background:#2563eb;

    color:white;

}

.call:hover{

    transform:translateY(-3px);

    background:#1d4ed8;

}

footer{

    margin-top:30px;

    text-align:center;

    color:#b8c3d3;

    font-size:.92rem;

}

footer a{

    color:#d9e6ff;

    text-decoration:none;

}

footer a:hover{

    text-decoration:underline;

}

@media(max-width:768px){

.container{

    padding:35px 25px;

}

.company-name{

    font-size:1.8rem;

}

.owner-image{

    width:170px;

    height:170px;

}

h1{

    font-size:2rem;

}

.btn{

    width:100%;

}

}