/* ========== Секция: Что говорят участницы клуба? ========== */
        .testimonials-section {
            padding: 70px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .section-heading h2 {
            color: #35424a;
            font-size: 2.2rem;
            margin-bottom: 30px;
        }

        .slider-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
            height: 500px;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            color: #e03e3e;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, color 0.3s;
            z-index: 10;
        }

        .slider-arrow:hover {
            background: white;
            color: #ff6b6b;
        }

        .slider-prev {
            left: 15px;
        }

        .slider-next {
            right: 15px;
        }
	    /* ========== Мобильные устройства ========== */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 10px; /* меньше отступов по бокам */
    }

    .slider-container {
        height: auto;
        aspect-ratio: 3 / 4;
        max-height: 70vh;
        width: 95vw;
        max-width: none;
        margin: 0 auto;
    }

    /* .slides img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    } */
}

        /* ========== Адаптация под мобильные ========== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.1rem;
            }
            .hero h3 {
                font-size: 1.3rem;
            }
            .btn {
                min-width: 280px;
                padding: 14px 40px;
                font-size: 1.15rem;
            }
            .results-section {
                margin: 0 auto;
                border-radius: 0;
                box-shadow: none;
                padding: 30px 15px;
            }
            .feature-item {
                flex-direction: column;
                text-align: center;
            }
            .feature-image {
                flex: 0 0 100px;
                width: 100px;
                height: 100px;
                margin: 0 auto;
            }
            .feature-text {
                text-align: left;
            }

            .tariffs-grid {
                grid-template-columns: 1fr;
            }
            .slider-container {
                height: 350px;
            }
            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            .contraindications-section h2,
            .how-it-works-section h2,
            .testimonials-section .section-heading h2 {
                font-size: 1.9rem;
            }
        }