/* CV Section Styles */
.cv-section {
    width: 100%;
    background: white;
}

.cv-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

.cv-entries {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cv-section .cv-entries .cv-entry {
    margin: 0 !important;
    padding: 0 !important;
}

.cv-section h2 {
    margin-bottom: 2rem;
}

.cv-section p {
    line-height: 1.2;
    margin: 0 !important;
    font-size: 20px;
}

.cv-section .cv-entry {
    margin: 0 !important;
    padding: 0 !important;
}

.cv-entry p {
    margin: 0 !important;
    line-height: 1.2 !important;
}

.cv-section h3 {
    margin: 2rem 0 1rem 0;
}

.cv-role,
.cv-degree {
    color: #000;
    margin: 0;
}

.cv-company,
.cv-institution {
    color: #808080;
    margin: 0;
}

.cv-additional {
    color: #808080;
    margin: 0;
}

.cv-dates,
.cv-grades {
    color: #808080;
    margin: 0;
}

.software-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.software-list p {
    color: #808080;
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1200px) {
    
    .cv-section p {
        font-size: 16px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cv-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

}
