body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

.resume-card {
    background-color: #ffffff;
    width: 500px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.profile-header {
    text-align: center;
    margin-bottom: 20px;
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3b82f6;
}

.profile-header h2 {
    margin: 10px 0 5px 0;
    color: #1e293b;
    font-size: 22px;
}

.contact-info {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 16px;
    color: #1e293b;
    border-bottom: 2px solid #bfdbfe;
    padding-bottom: 5px;
    margin-bottom: 12px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.skill-badge {
    background-color: #3b82f6;
    color: white;
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 12px;
}

.exp-list {
    margin-bottom: 15px;
}

.exp-item {
    margin-bottom: 10px;
    font-size: 13px;
    color: #334155;
}

.exp-desc {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
    padding-left: 15px;
}

.exp-form {
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.exp-form legend {
    font-size: 12px;
    color: #64748b;
    padding: 0 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.form-group label {
    font-size: 12px;
    color: #475569;
    margin-bottom: 3px;
}

.form-group input {
    padding: 4px 8px;
    border: 1px solid #cbd5e1;
    border-radius: 3px;
    font-size: 13px;
}

.edu-list {
    font-size: 13px;
    color: #334155;
}

.edu-desc {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.btn-center {
    text-align: center;
    margin-top: 10px;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #2563eb;
}