.about-us-section {
    padding: 40px 0 80px;
    width: 100%;
}

.about-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    gap: 100px;
}

.about-us-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 500px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
}

.about-content h2 {
    color: black;
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 44px;
    margin: 0;
}

.about-content p {
    color: #828282;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

.about-us-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.text-content {
    color: #212529;
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    line-height: 30px;
}

.about-us-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-illustration img {
    width: 600px; /* Hier können Sie die Größe anpassen */
    height: auto;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .about-us-section .container {
        flex-direction: column;
        gap: 60px;
    }

    .about-us-left {
        width: 100%;
        max-width: 710px;
        margin: 0 auto;
    }

    .about-us-illustration {
        width: 100%;
        max-width: 710px;
    }

    .about-us-illustration img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-us-section .container {
        padding: 0 20px;
    }

    .about-content h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .about-content p {
        font-size: 18px;
        line-height: 28px;
    }
    
    .text-content {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .about-us-section .container {
        padding: 0 16px;
    }

    .about-content h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .text-content {
        font-size: 15px;
        line-height: 24px;
    }
}