/* Lebenslauf Section */
.lebenslauf-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.lebenslauf-wrapper {
    display: flex;
    flex-wrap: wrap;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.lebenslauf-image-col {
    flex: 1;
    min-width: 400px;
    background-color: rgba(0, 146, 202, 0.05);
    /* Subtle accent color */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.lebenslauf-image-col img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.lebenslauf-text-col {
    flex: 1.5;
    min-width: 400px;
    padding: 80px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lebenslauf-text-col h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.lebenslauf-text-col h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
}

.lebenslauf-text-col p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {

    .lebenslauf-image-col,
    .lebenslauf-text-col {
        flex: 100%;
        min-width: 100%;
    }

    .lebenslauf-image-col {
        padding: 40px;
        order: 1;
    }

    .lebenslauf-text-col {
        padding: 40px 30px;
        order: 2;
    }

    .lebenslauf-text-col h2 {
        font-size: 2.2rem;
    }
}