body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #f8fafc;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}
.bg-pattern {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
    z-index: 0;
}
.profile-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.profile-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
    padding: 48px 36px 36px 36px;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.profile-img-wrapper {
    width: 128px;
    height: 128px;
    margin-top: -100px;
    margin-bottom: 18px;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(37,99,235,0.10);
    border: 6px solid #fff;
    background: #f3f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.profile-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.profile-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.2em;
    color: #1a202c;
    letter-spacing: 1px;
    text-align: center;
}
.profile-content h2 {
    font-size: 1.1rem;
    color: #3b4252;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    border-bottom: 1.5px solid #e5e7eb;
    padding-bottom: 0.2em;
    text-align: left;
}
.profile-content p, .profile-content li {
    color: #444e5e;
    font-size: 1.05rem;
    line-height: 1.7;
}
.profile-content ul {
    padding-left: 1.2em;
    margin-bottom: 1.2em;
}
.profile-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.profile-content a:hover {
    color: #1e40af;
    text-decoration: underline;
}
/* Social links as icon buttons */
.profile-content li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 50px;
    background: #f1f5fb;
    margin-right: 8px;
    margin-bottom: 4px;
    transition: background 0.2s, color 0.2s;
    font-size: 1.05rem;
    gap: 6px;
}
.profile-content li a svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
}
.profile-content li a:hover {
    background: #2563eb;
    color: #fff;
}
/* Section divider */
.profile-content h2:not(:first-child) {
    margin-top: 2.2em;
    position: relative;
}
.profile-content h2:not(:first-child)::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #e0e7ef 100%);
    border-radius: 2px;
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    .profile-card {
        padding: 18px 2vw 18px 2vw;
        max-width: 98vw;
    }
    .profile-img-wrapper {
        width: 90px;
        height: 90px;
        margin-top: -60px;
    }
    .profile-card img {
        width: 80px;
        height: 80px;
    }
    .profile-content h1 {
        font-size: 1.4rem;
    }
} 