* {
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #6f6fdc, #7b5ccf);
    display: flex;
    justify-content: center;
    align-items: center;
}

.page {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #f3f3f3;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* If image is used */
.profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    text-align: center;
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 25px;
}

h1 span {
    font-weight: 600;
}

.field {
    margin-bottom: 18px;
    line-height: 1.4;
}

.label {
    display: block;
    color: #5b7cfa;
    font-weight: 600;
    margin-bottom: 4px;
}

.value {
    color: #2c3e50;
    font-size: 15px;
}

footer {
    margin-top: 20px;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    opacity: 0.9;
}
