@media screen and (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: unset;
    }

    .newsletter-form input {
        border-radius: 5px 0 0 5px;
        margin-bottom: unset;
    }

    .newsletter-form button {
        width: auto;
        border-radius: 0 5px 5px 0;
        margin-bottom: unset;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Wenn genau 2 Items in der letzten Zeile sind */
    .service-grid > :nth-last-child(2):nth-child(3n + 1) {
        grid-column: 1;
    }

    .service-grid > :nth-last-child(1):nth-child(3n + 2) {
        grid-column: 3;
    }

    .comparison-container {
        max-width: 800px;
    }

    .team-hero {
        padding: 120px 0 80px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .service-actions {
        flex-direction: unset;
    }

    .package-comparison {
        padding: 40px;
    }

    .comparison-table {
        font-size: unset;
    }

    .timeline-container {
        --connector-length: 50px;
        height: 650px;
    }
    .timeline-nav {
        display: none;
    }
    .timeline-track {
        gap: 150px;
        padding-left: 10vw;
        padding-right: 30px;
    }
    .timeline-item {
        min-width: 350px;
        width: auto;
    }
    .timeline-content {
        padding: 25px;
    }

    .timeline-content-wrapper {
        padding: 0;
        height: var(--wrapper-height);
        min-height: var(--wrapper-height);
    }

    .timeline-item.top .timeline-content-wrapper {
        top: auto;
        bottom: calc(50% + 50px);
        justify-content: flex-end;
    }

    .timeline-item.bottom .timeline-content-wrapper {
        top: calc(50% + 50px);
        bottom: auto;
        justify-content: flex-start;
    }

    .timeline-item.top .timeline-content::before {
        top: auto;
        bottom: 0;
    }

    .timeline-item.bottom .timeline-content::before {
        top: 0;
        bottom: auto;
    }

    .timeline-item.top:hover .timeline-content-wrapper {
        transform: translateY(-10px);
    }

    .timeline-item.bottom:hover .timeline-content-wrapper {
        transform: translateY(10px);
    }

    .timeline-item.top .timeline-connector {
        top: calc(50% - var(--connector-length));
        bottom: 50%;
        height: var(--connector-length);
    }

    .timeline-item.bottom .timeline-connector {
        top: 50%;
        bottom: calc(50% - var(--connector-length));
        height: var(--connector-length);
    }

    .timeline-restart-wrapper {
        display: flex;
        position: relative;
        min-width: 100px;
    }
}