        :root {
            --primary: #587436;
            --primary-dark: #465a2c;
            --secondary: #23201b;
            --light: #f8f4ec;
            --accent: #d4b483;
            --accent-light: #e8d9c0;
            --gray-light: #e9e5dd;
            --danger: #c44536;
            --success: #587436;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--secondary);
            line-height: 1.6;
            padding: 10px;
        }
        
        /* АДАПТИВНОЕ МЕНЮ */
        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-radius: 12px;
            margin-bottom: 30px;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .logo:hover .logo-img {
            transform: scale(1.05);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 15px;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-link:hover {
            background-color: var(--accent-light);
            color: var(--secondary);
        }
        
        .nav-link.active {
            background-color: var(--primary);
            color: white;
        }
        
        .nav-link.new-window::after {
            content: " ↗";
            font-size: 0.8rem;
            opacity: 0.7;
        }
        
        /* Стили для телефона в меню */
        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            background: rgba(88, 116, 54, 0.1);
            white-space: nowrap;
        }
        
        .nav-phone:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Стили для Telegram в меню */
        .nav-telegram {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #0088cc 0%, #0088cc 100%);
            white-space: nowrap;
        }
        
        .nav-telegram:hover {
            background: linear-gradient(135deg, #0077b5 0%, #0077b5 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-dark);
            padding: 5px;
        }
        
        @media (max-width: 1100px) {
            .nav-menu {
                gap: 10px;
            }
            
            .nav-link, .nav-phone, .nav-telegram {
                font-size: 0.9rem;
                padding: 7px 10px;
            }
        }
        
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                border-radius: 0 0 12px 12px;
                z-index: 999;
                gap: 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 10px 0;
                width: 100%;
            }
            
            .nav-link, .nav-phone, .nav-telegram {
                padding: 12px 20px;
                font-size: 1.1rem;
                justify-content: center;
                width: 90%;
                margin: 0 auto;
            }
            
            .nav-phone {
                background: rgba(88, 116, 54, 0.1);
                color: var(--primary);
            }
            
            .nav-telegram {
                background: linear-gradient(135deg, #0088cc 0%, #0088cc 100%);
                color: white;
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .header {
            text-align: center;
            margin: 30px 0 40px;
            padding: 40px 25px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(88, 116, 54, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .header h1 {
            font-size: 2.4rem;
            margin-bottom: 18px;
            font-weight: 700;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }
        
        .header .subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }
        
        .price-ribbon {
            position: absolute;
            top: 20px;
            right: -40px;
            background: var(--accent);
            color: var(--secondary);
            padding: 12px 50px;
            transform: rotate(45deg);
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 0;
        }
        
        .highlight {
            color: var(--accent);
            font-weight: bold;
        }
        
        .section {
            background-color: white;
            border-radius: 15px;
            padding: 35px 30px;
            margin-bottom: 35px;
            box-shadow: 0 5px 20px rgba(35, 32, 27, 0.05);
            border: 1px solid var(--gray-light);
            position: relative;
            overflow: hidden;
        }
        
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background-color: var(--primary);
        }
        
        .section-title {
            color: var(--primary-dark);
            font-size: 1.8rem;
            margin-bottom: 30px;
            padding-bottom: 18px;
            border-bottom: 2px solid var(--accent-light);
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 18px;
            font-size: 1.6rem;
            color: var(--primary);
        }
        
        /* СЛАЙДЕР */
        .slider-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 30px auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 500px;
        }
        
        @media (max-width: 768px) {
            .slider {
                height: 350px;
            }
        }
        
        @media (max-width: 480px) {
            .slider {
                height: 250px;
            }
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            cursor: pointer;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px;
            padding-top: 40px;
            cursor: default;
        }
        
        .slide-caption h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        /* Стили для адаптивного видео в слайдере */
        .slide-video {
            position: relative;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            cursor: pointer;
        }
        
        .slide-video iframe {
            width: 100%;
            height: 100%;
            border: none;
            object-fit: contain;
        }
        
        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2rem;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .slide-video:hover .video-play-button {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-thumbnail-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        /* Модальное окно для видео */
        .modal-video {
            max-width: 90%;
            max-height: 90%;
            width: 900px;
        }
        
        @media (max-width: 992px) {
            .modal-video {
                width: 95%;
            }
        }
        
        @media (max-width: 768px) {
            .modal-video {
                width: 98%;
            }
        }
        
        /* МОДАЛЬНОЕ ОКНО ДЛЯ УВЕЛИЧЕНИЯ ФОТО */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1100;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        
        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .modal-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
        }
        
        .modal-caption {
            color: white;
            text-align: center;
            margin-top: 20px;
            padding: 0 20px;
            max-width: 800px;
        }
        
        .modal-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: white;
        }
        
        .modal-caption p {
            color: #ddd;
            font-size: 1.1rem;
            line-height: 1.5;
        }
        
        .modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        
        .modal-close:hover {
            transform: scale(1.2);
        }
        
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1001;
        }
        
        .modal-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .modal-nav.prev {
            left: 20px;
        }
        
        .modal-nav.next {
            right: 20px;
        }
        
        .modal-counter {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.1rem;
            background: rgba(0, 0, 0, 0.5);
            padding: 8px 16px;
            border-radius: 20px;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-btn {
            background: rgba(255,255,255,0.8);
            border: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-btn.active {
            background: var(--accent);
            transform: scale(1.2);
        }
        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.7);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: var(--primary-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .slider-arrow:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .slider-arrow.prev {
            left: 20px;
        }
        
        .slider-arrow.next {
            right: 20px;
        }
        
        .gallery-thumbnails {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            margin-top: 20px;
        }
        
        @media (max-width: 992px) {
            .gallery-thumbnails {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .gallery-thumbnails {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .thumbnail {
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .thumbnail:hover {
            opacity: 1;
            transform: translateY(-3px);
        }
        
        .thumbnail.active {
            opacity: 1;
            border-color: var(--primary);
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Остальные стили */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        
        .feature-card {
            background: var(--light);
            border-radius: 12px;
            padding: 28px;
            border: 1px solid var(--accent-light);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .feature-card:hover {
            background: white;
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(88, 116, 54, 0.1);
        }
        
        .feature-card h3 {
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-size: 1.35rem;
            display: flex;
            align-items: center;
        }
        
        .feature-card h3 i {
            margin-right: 12px;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .feature-list {
            list-style-type: none;
            flex-grow: 1;
        }
        
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px dashed var(--accent-light);
            display: flex;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .feature-list li i {
            color: var(--primary);
            margin-right: 12px;
            margin-top: 3px;
            font-size: 0.9rem;
            flex-shrink: 0;
            width: 20px;
        }
        
        /* ДОБАВЛЕНО: Отступы для strong элементов */
        .feature-list li strong {
            color: var(--primary-dark);
            margin: 0 5px;
        }
        
        /* Отступы для strong в обычных параграфах */
        .section p strong,
        .included-item p strong,
        .unique-feature p strong {
            margin: 0 3px;
        }
        
        /* Новый блок: Дополнительные услуги */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .service-card {
            background: linear-gradient(135deg, #f9f7f2 0%, var(--light) 100%);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--accent-light);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(88, 116, 54, 0.1);
            border-color: var(--primary);
        }
        
        .service-card.new {
            border: 2px solid var(--accent);
            position: relative;
        }
        
        .service-card.new::before {
            content: 'НОВИНКА';
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--accent);
            color: var(--secondary);
            padding: 4px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        
        .service-card h4 {
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }
        
        .service-card h4 i {
            margin-right: 12px;
            color: var(--primary);
        }
        
        .service-description {
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .service-price {
            font-weight: 600;
            color: var(--primary-dark);
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed var(--accent-light);
        }
        
        .service-note {
            font-size: 0.85rem;
            color: var(--danger);
            margin-top: 5px;
            font-weight: 500;
        }
        
        .price-tag {
            display: inline-flex;
            align-items: center;
            margin-left: auto;
            background: var(--accent-light);
            border-radius: 20px;
            padding: 5px 12px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--secondary);
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        .price-tag.paid {
            background-color: var(--danger);
            color: white;
        }
        
        .price-tag.free {
            background-color: var(--success);
            color: white;
        }
        
        .price-info {
            display: block;
            font-size: 0.85rem;
            color: #666;
            margin-top: 3px;
            width: 100%;
            padding-left: 32px;
        }
        
        /* Блок стоимости аренды */
        .pricing-section {
            background: linear-gradient(135deg, #f5f1e8 0%, var(--light) 100%);
            border: 2px solid var(--accent);
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
        }
        
        .pricing-title {
            color: var(--primary-dark);
            font-size: 1.6rem;
            margin-bottom: 25px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pricing-title i {
            margin-right: 15px;
            color: var(--primary);
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        
        .price-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 2px solid var(--accent-light);
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(88, 116, 54, 0.1);
        }
        
        .price-card.highlighted {
            border-color: var(--primary);
            background: linear-gradient(135deg, #f8f4ec 0%, white 100%);
            position: relative;
        }
        
        .price-card.highlighted::before {
            content: 'Популярно';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .price-amount {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin: 15px 0;
        }
        
        .price-period {
            color: var(--secondary);
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        .price-days {
            background: var(--accent-light);
            padding: 10px;
            border-radius: 8px;
            margin-top: 15px;
        }
        
        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .included-item {
            background: linear-gradient(to right, #f5f1e8, var(--light));
            border-radius: 12px;
            padding: 22px;
            display: flex;
            align-items: flex-start;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            min-height: 110px;
        }
        
        .included-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(35, 32, 27, 0.08);
            border-color: var(--accent-light);
            background: white;
        }
        
        .included-icon {
            background-color: var(--primary);
            color: white;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            flex-shrink: 0;
            font-size: 1.2rem;
        }
        
        .included-item h4 {
            color: var(--primary-dark);
            margin-bottom: 8px;
            font-size: 1.15rem;
        }
        
        .included-item p {
            color: var(--secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Остальные стили остаются как были */
        .spa-table-container {
            overflow-x: auto;
            margin: 25px 0;
            border-radius: 12px;
            border: 1px solid var(--gray-light);
        }
        
        .spa-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        
        .spa-table th {
            background-color: var(--primary);
            color: white;
            padding: 22px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .spa-table th:first-child {
            border-top-left-radius: 11px;
        }
        
        .spa-table th:last-child {
            border-top-right-radius: 11px;
        }
        
        .spa-table td {
            padding: 22px 20px;
            border-bottom: 1px solid var(--gray-light);
            vertical-align: top;
        }
        
        .spa-table tr:nth-child(even) {
            background-color: #fcfaf6;
        }
        
        .spa-table tr:last-child td {
            border-bottom: none;
        }
        
        .warning-box {
            background-color: #fef6e6;
            border: 1px solid #f0d9a8;
            padding: 22px;
            margin: 30px 0 10px;
            border-radius: 10px;
        }
        
        .warning-box h4 {
            color: #856404;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-size: 1.2rem;
        }
        
        .warning-box h4 i {
            margin-right: 12px;
        }
        
        .unique-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .unique-feature {
            background: white;
            padding: 28px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--accent-light);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .unique-feature:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 25px rgba(35, 32, 27, 0.1);
            border-color: var(--primary);
        }
        
        .unique-feature i {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        .unique-feature h4 {
            color: var(--primary-dark);
            margin-bottom: 18px;
            font-size: 1.35rem;
            line-height: 1.3;
        }
        
        .unique-feature p {
            color: var(--secondary);
            line-height: 1.5;
            flex-grow: 1;
        }
        
        .contact-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 45px 35px;
            border-radius: 18px;
            text-align: center;
            margin: 40px 0 30px;
            box-shadow: 0 10px 30px rgba(88, 116, 54, 0.2);
        }
        
        .contact-box h3 {
            font-size: 2.1rem;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .phones {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 35px 0;
        }
        
        .phone {
            font-size: 1.6rem;
            font-weight: 700;
            background-color: rgba(255, 255, 255, 0.12);
            padding: 18px 30px;
            border-radius: 12px;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            text-decoration: none;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .phone:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            color: white;
            text-decoration: none;
        }
        
        .phone-label {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 8px;
            font-weight: 400;
        }
        
        .hashtags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 35px;
        }
        
        .hashtag {
            background-color: rgba(255, 255, 255, 0.12);
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .hashtag:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .section-intro {
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.6;
            color: var(--secondary);
        }
        
        @media (max-width: 992px) {
            .header h1 {
                font-size: 2.1rem;
            }
            
            .feature-grid, .included-grid, .price-cards, .services-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .section {
                padding: 30px 25px;
            }
            
            .price-ribbon {
                font-size: 0.9rem;
                padding: 10px 40px;
                right: -45px;
                top: 15px;
            }
            
            .modal-nav {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 30px 20px;
                margin: 20px 0 30px;
            }
            
            .header h1 {
                font-size: 1.9rem;
            }
            
            .header .subtitle {
                font-size: 1.1rem;
            }
            
            .feature-grid, .included-grid, .unique-features, .price-cards, .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .phones {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .phone {
                width: 100%;
                max-width: 350px;
                text-align: center;
                font-size: 1.4rem;
                padding: 16px 20px;
            }
            
            .section {
                padding: 28px 22px;
                margin-bottom: 30px;
            }
            
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 25px;
            }
            
            .contact-box {
                padding: 35px 25px;
            }
            
            .contact-box h3 {
                font-size: 1.8rem;
            }
            
            .included-item {
                min-height: auto;
            }
            
            .price-ribbon {
                display: none;
            }
            
            .price-tag {
                margin-left: 0;
                margin-top: 8px;
                width: 100%;
                justify-content: center;
            }
            
            .feature-list li {
                flex-direction: column;
            }
            
            .price-info {
                padding-left: 0;
                margin-top: 5px;
            }
            
            .modal-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .modal-nav.prev {
                left: 10px;
            }
            
            .modal-nav.next {
                right: 10px;
            }
            
            .modal-close {
                top: -40px;
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            .header h1 {
                font-size: 1.7rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .included-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .included-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .phone {
                font-size: 1.3rem;
                padding: 14px 18px;
            }
            
            .price-amount {
                font-size: 1.8rem;
            }
            
            .modal-caption h3 {
                font-size: 1.2rem;
            }
            
            .modal-caption p {
                font-size: 1rem;
            }
        }

/* Секция пар-мастеров */
.par-masters-section {
    padding: 80px 0;
    background-color: #f8f5f0;
    position: relative;
}

.par-masters-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок секции */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c19a6b;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5d6d7e;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* Вводный текст */
.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.section-intro h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Сетка мастеров */
.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Карточка мастера */
.master-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.master-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.master-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.master-image {
    height: 320px;
    overflow: hidden;
}

.master-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.master-card:hover .master-image img {
    transform: scale(1.05);
}

.master-info {
    padding: 25px;
    text-align: center;
}

.master-name {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.master-detail {
    display: inline-block;
    color: #c19a6b;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.master-detail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #c19a6b;
    transition: width 0.3s ease;
}

.master-card:hover .master-detail {
    color: #a87c4a;
}

.master-card:hover .master-detail::after {
    width: 100%;
}

/* Адаптивность */
@media (max-width: 992px) {
    .par-masters-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .masters-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .par-masters-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .masters-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .master-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-intro h3 {
        font-size: 1.5rem;
    }
    
    .master-info {
        padding: 20px;
    }
    
    .master-name {
        font-size: 1.2rem;
    }
}
/* Стили для Telegram ссылки */
.telegram-link {
    background: linear-gradient(135deg, #0088cc 0%, #0088cc 100%);
    color: white !important;
}

.telegram-link:hover {
    background: linear-gradient(135deg, #0077b5 0%, #0077b5 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.telegram-link .phone-label {
    color: rgba(255, 255, 255, 0.85);
}

.telegram-link i {
    transition: transform 0.3s ease;
}

.telegram-link:hover i {
    transform: scale(1.1);
}

/* Адаптивность для телефонов */
@media (max-width: 768px) {
    .phones {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .phone {
        width: 100%;
        max-width: 350px;
        text-align: center;
        font-size: 1.4rem;
        padding: 16px 20px;
    }
    
    .telegram-link {
        font-size: 1.3rem;
    }
    
    .telegram-link i {
        font-size: 1.6rem;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .phone {
        font-size: 1.3rem;
        padding: 14px 18px;
    }
    
    .telegram-link {
        font-size: 1.2rem;
    }
    
    .telegram-link i {
        font-size: 1.4rem;
        margin-right: 6px;
    }
}
/* Мобильная адаптация для таблицы СПА - ИСПРАВЛЕННАЯ ВЕРСИЯ */
@media screen and (max-width: 768px) {
    /* Принудительно скрываем заголовки */
    .spa-table thead {
        display: none !important;
    }
    
    /* Превращаем таблицу в блоки */
    .spa-table,
    .spa-table tbody,
    .spa-table tr,
    .spa-table td {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Убираем min-width у таблицы */
    .spa-table {
        min-width: auto !important;
    }
    
    /* Стили для каждой строки как карточки */
    .spa-table tr {
        margin-bottom: 20px !important;
        border: 1px solid var(--accent-light) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        background: white !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
    }
    
    /* Стили для ячеек */
    .spa-table td {
        padding: 15px !important;
        border: none !important;
        border-bottom: 1px solid var(--gray-light) !important;
    }
    
    /* Последняя ячейка без нижней границы */
    .spa-table td:last-child {
        border-bottom: none !important;
    }
    
    /* Первая ячейка как заголовок */
    .spa-table td:first-child {
        background: var(--light) !important;
        border-bottom: 1px solid var(--accent-light) !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
    }
    
    .spa-table td:first-child strong {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    /* Убираем фон у четных строк */
    .spa-table tr:nth-child(even) {
        background: white !important;
    }
    
    /* Стили для цен */
    .spa-table td .price-tag {
        display: inline-block !important;
        margin: 5px 5px 0 0 !important;
        font-size: 0.9rem !important;
        width: auto !important;
    }
    
    .spa-table td .price-tag.paid {
        margin-left: 0 !important;
    }
    
    /* Отступы для параграфов */
    .spa-table td p {
        margin-bottom: 8px !important;
    }
    
    .spa-table td p:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Стили для дополнительного текста */
    .spa-table td p em {
        font-size: 0.9rem !important;
        color: var(--secondary) !important;
        display: block !important;
        padding: 8px 0 0 !important;
    }
}

/* Для очень маленьких экранов */
@media screen and (max-width: 480px) {
    .spa-table td {
        padding: 12px !important;
    }
    
    .spa-table td:first-child {
        font-size: 1.1rem !important;
    }
    
    .spa-table td .price-tag {
        width: 100% !important;
        text-align: center !important;
        margin: 5px 0 0 !important;
    }
    
    /* Две цены для чана располагаем вертикально */
    .spa-table td .price-tag.paid {
        display: block !important;
        margin: 5px 0 !important;
    }
}