* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.profile-card {
    background: #ffffff;
    width: 320px;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-container {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h2 {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: lowercase;
}

.role {
    font-size: 13px;
    color: #0a66c2;
    font-weight: 600;
    margin-bottom: 15px;
}

.description {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 10px;
}

.skills {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.skills span {
    background-color: #f3f2ef;
    color: #555;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.contact-btn {
    background-color: #0a66c2;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 35px;
    border-radius: 25px;
    display: inline-block;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background-color: #004182;
}