:root {
    --primary-color: #4A90E2;
    --secondary-color: #f5f5f5;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--secondary-color);
    color: #333;
}

.cv-container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.row {
    display: flex;
    gap: 20px;
}

.col {
    flex: 1;
}

.cv-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 20px;
    align-items: center;
}

.foto-profil {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
}

.jabatan {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

h1 {
    margin: 10px 0 5px;
    font-size: 2em;
}

h2 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.item {
    margin-bottom: 15px;
}

.tahun {
    font-size: 0.9em;
    color: gray;
}

.skill {
    margin-bottom: 10px;
}

.skill span {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.progress {
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
    height: 8px;
}

.progress div {
    height: 100%;
    background: var(--primary-color);
}

i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Responsif */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .foto-profil {
        width: 120px;
        height: 120px;
        margin: auto;
    }

    .info-col p {
        text-align: center;
    }
}

