.testimonials-container {
    width: 100%;
    background: #00FFD0;
    padding: 80px 40px;
    margin: 20px 0 2px;
    max-width: none;
    box-sizing: border-box;
    position: static;
}

@media (min-width: 769px) {
    body.umzug-site .testimonials-container {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

.testimonials-container:last-child {
    margin-bottom: 0;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

/* Left side - heading */
.testimonials-left {
    flex: 0 0 400px;
}

.testimonials-heading {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.testimonials-subheading {
    font-size: 18px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* Right side */
.testimonials-right {
    flex: 1;
}

/* Tablet and mobile */
@media (max-width: 1200px) {
    .testimonials-content {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-left {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .testimonials-heading {
        font-size: 36px;
    }
}

@media (max-width: 1013px) {
    .testimonials-container {
        padding: 60px 24px;
    }

    .testimonials-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 60px 20px;
    }
}
