@media (max-width: 1200px) {
    .comparison-slider {
        width: 100vw;
        border-radius: 0;
    }

    .image-after img {
        width: 100vw;
    }
}

@media (max-width: 768px) {

    /* Allgemeine Anpassungen */
    body {
        line-height: 1.5;
        font-size: 15px;
        overflow-x: hidden;
    }

    section {
        padding: 3rem 15px;
    }

    /* Navigation */
    .sticky-nav {
        padding: 10px 15px;
    }

    .hamburger-toggle {
        display: block;
        background-color: transparent;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 500;
    }

    .nav-links.mobile-active {
        display: flex !important;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-links li {
        margin: 0 20px;
        font-family: 'Courier New', Courier, monospace;
        font-size: large;
    }

    .active {
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 2px solid #c03a2b46;
    }


    /* Hero Sektion */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Referenzen / Vorher-Nachher */
    .comparison-slider {
        height: 300px;
    }

    .image-before img,
    .image-after img {
        width: 100vw;
    }

    /* Über mich */
    .about-container {
        flex-direction: column;
        gap: 20px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Kontakt */
    .contact-info-wrapper {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }
}