:root {
    --primary-color: #4a6bff;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --light-text: #777;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7ff;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text-color);
}

.card-container {
    width: 100%;
    max-width: 380px;
}

.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    padding: 30px;
    text-align: center;
}

.profile-section {
    margin-bottom: 25px;
}

.profile-image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
    padding: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.title {
    margin: 5px 0;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.company {
    margin: 5px 0 20px;
    font-size: 14px;
    color: var(--light-text);
}

.contact-section {
    margin: 25px 0;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-item i {
    width: 30px;
    color: var(--primary-color);
    font-size: 16px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.qr-section {
    margin-top: 20px;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 8px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 10px;
}

.download-btn i {
    margin-right: 8px;
}

.download-btn:hover {
    background: #3a5bef;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
}