body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0;
}

.cv-container {
    background-color: #ffffff;
    width: 500px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.avatar {
    width: 90px;
    height: 90px;
    background-color: #e2e8f0;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h2 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-size: 22px;
}

.contact-info {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 25px;
}

.section {
    text-align: left;
    margin-bottom: 25px;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.section-title {
    font-weight: bold;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 12px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.skill-tag {
    background-color: #3b82f6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.btn {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: background 0.2s;
}

.btn:hover {
    background-color: #2563eb;
}

.job-item {
    margin-bottom: 12px;
}

.job-title {
    font-weight: bold;
    font-size: 14px;
    color: #334155;
}

.job-desc {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.exp-form {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    background-color: #f8fafc;
}

.form-legend {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 10px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #475569;
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
    outline: none;
}

.form-group input:focus {
    border-color: #3b82f6;
}