/* ========================
           Секция "Оказание услуг" (Quality Services)
               ======================== */
            .quality-services {
                position: relative;
                background-color: #be9865; /* Цвет фона точно по последнему макету */
                padding: 6rem 0 12rem 0; /* Увеличен отступ для плавных изгибов */
                color: #ffffff;
                overflow: hidden;
            }
        
            .quality-content {
                position: relative;
                z-index: 2;
            }
        
            .quality-title {
                font-size: clamp(2.2rem, 4vw, 3.5rem);
                font-weight: 700;
                margin-bottom: 2rem;
                line-height: 1.2;
            }
        
            .quality-text {
                font-size: 1.15rem;
                line-height: 1.8;
                margin-bottom: 3rem;
                max-width: 95%;
            }
        
            .quality-subtitle {
                font-size: clamp(1.6rem, 3vw, 2.4rem);
                font-weight: 700;
                margin-bottom: 0;
            }
        
            /* Идеальная структура изгибов и горизонтальной линии */
            .quality-lines {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                line-height: 0;
                z-index: 1;
            }
        
            .quality-lines svg {
                display: block;
                width: 100%;
                height: 200px;
            }
        
            /* Адаптив */
            @media (max-width: 991px) {
                .quality-services {
                    padding: 4rem 0 8rem 0;
                }
                .quality-lines svg {
                    height: 120px;
                }
                .quality-text {
                    font-size: 1.05rem;
                }
            }

/* ========================
