* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Segoe UI", Arial, sans-serif;

}


body {
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    width: 320px;
    background: white;
    border-radius: 25px ;
    padding: 28px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translate(-4px);
}

.logo {
    margin-bottom: 20px;
} 

.logo img {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto ;
}

.profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 18px;
    

}

.profile h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
    margin-bottom: 8px;
}

.profile p {
    display: block;
    margin-bottom: 18px;
    font-size: 15px;
    max-width: 260px;
    line-height: 1.55;
    color: #4b5563;
    
}

.links {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    margin-top: 0;
}

.links a {
    background: #e5e7eb;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    color: #111827;
    transition: 0.3s;
}

.links a:hover {
    background: #2563eb;
    color: white;
}

.page {
    width: 100%;
    padding: 40px 16px;
    display: flex;
    justify-content: center;
    
}

 