.lebenslauf{
    padding-top: 40px;
    padding-bottom: 70px;
}

.lebenslauf-container-o{
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}


.container {
    max-width: 700px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.header-icon {
width: 24px;
height: 24px;
color: #1e88e5;
}

h1 {
font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 10px;
    height: 10px;
    background-color: #1e88e5;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #1e88e5;
}

.job-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.job-meta {
    font-size: 14px;
    color: #1e88e5;
    margin-bottom: 10px;
}

.job-meta .separator {

    color: #666;
}

.job-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}


.lebenslauf-container {

    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

.lebenslauf-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 600;
}

.lebenslauf-icon {
    color: #1e88e5;
    font-size: 20px;
    transform: translateY(2px);
}

.lebenslauf-section {
    margin-bottom: 40px;
}

.lebenslauf-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.lebenslauf-languages {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.lebenslauf-language-tag {
    padding: 8px 16px;
    background-color: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
}

.lebenslauf-skills-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lebenslauf-skill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.lebenslauf-skill-icon {
    width: 18px;
    height: 18px;
    border: 2px solid #1e88e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lebenslauf-skill-icon::after {
    content: '✓';
    color: #1e88e5;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 500px){
    .lebenslauf{
        padding-left: 0px;
    }
    .lebenslauf-container-o{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 30px;
    }
    .container{
        width: 80%;
    }

.lebenslauf-container{
    width: 80%;
}
}