body 
{
    box-sizing: content-box;
    margin: 0;
    padding: 0;
    border: 0;
    min-height: 100vh;
    max-width: 100vw;
    font-family: 'Poppins', sans-serif;
    background: #f7f8fa;
    text-align: center;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.card 
{
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 25px;
    max-width: 400px;
    margin: auto;
}

img 
{
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

h1 { color: #222; font-size: 1.5em; margin: 10px 0; }
p { color: #555; margin: 5px 0; }

.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    background: #2c7efc;
    font-weight: bold;
}

.buttons a.whatsapp { background: #25d366; }
.buttons a.pay { background: #f5a623; }