       body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
        .logo img { max-width: 200px; }

/* Заголовки пакетов */
.studio-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #007bba;
    padding-bottom: 10px;
}
.studio-title_h3{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 10px;
}

/* Список услуг */
.service-list {
    margin: 15px 0;
    padding-left: 25px;
    list-style-type: none;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #555;
}

/* Иконка вместо маркера списка */
.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bba;
    font-size: 20px;
    line-height: 1;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .studio-title {
        font-size: 24px;
    }

    .service-list li {
        font-size: 16px;
    }
}


        /* Стили галереи с горизонтальным скроллингом */
        .gallery {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding-bottom: 10px;
            scroll-snap-type: x mandatory;
        }

          .gallery a {
            flex: 0 0 auto;
            width: 100%; /* Ширина превью */
            max-width: 400px;
            height: 400px; /* Высота превью */
            overflow: hidden;
            position: relative;
            
        }

        .gallery a:hover {
            transform: scale(1.05);
        }

        .gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }

        /* Стили для скрытия полосы прокрутки */
        .gallery::-webkit-scrollbar {
            width: 0;
            height: 0;
        }

        .inf {
            background: transparent;
            border: solid 1px black;
            border-radius: 0px;
            color: black;
        }
        .button { display: block; width: 200px; margin: 20px auto; padding: 10px; text-align: center; background-color: #007BFF; color: white; text-decoration: none; border-radius: 5px; }
        .studio-section { 
            padding: 20px; 
            border-radius: 5px; 
            margin-bottom: 20px;
            border: solid 1px #ebebeb; }
        .studio-title { text-align: center; margin-top: 20px; }
        .studio-cost { text-align: center; font-size: 1.2em; margin: 20px 0; }
        .calc-btn { display: block; width: 200px; margin: 20px auto; }

        /* Стили для инпутов с количеством товаров */

.quantity-input {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
}

.quantity-input input {
    width: 60px;
    text-align: center;
    font-size: 1.2em;
    padding: 5px;
    border: 2px solid #007bba;
    border-radius: 5px;
}

.quantity-input button {
    touch-action: manipulation;
    width: 40px;
    height: 40px;
    border: none;
    background-color: #007bba;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
}

.calc-btn {
    background-color: #007bba;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: block;
    margin: 20px auto;
}

.calc-btn:hover {
    background-color: #005f8f;
}

     .footer {
        background-color: #f8f9fa;
        padding: 20px;
        border-top: 1px solid #ddd;
         text-align: center;
    }

    .btn-whatsapp {
        display: block;
        width: 200px;
        margin: 10px auto;
        background-color: #25D366;
        color: white;
        text-align: center;
        padding: 10px;
        border-radius: 5px;
        text-decoration: none;
    }

    .btn-whatsapp:hover {
        background-color: #1EBE5D;
    }

.btn-whatsapp:active {
    background-color: #17a853;
    transform: scale(0.98);
}

    .social-links {
        margin-top: 20px;
    }

    .social-header {
        font-size: 18px;
        font-weight: bold;
    }

    .social-icons {
        gap: 30px;
    }

    .social-link {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #007bba;
        font-size: 18px;
    }

    .social-link i {
        margin-right: 8px;
        font-size: 15px;
    }
    .social-links a {
        margin-right: 8px;
        font-size: 15px;
    }

    .social-link:hover {
        color: #005a8d;
    }

        }
.modal-lg {
    max-width: 800px;
}

.quantity-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background-color: #007bba;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.quantity-btn:hover {
    background-color: #005f8a;
}

.price-block {
    background-color: #e0f7fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.total-cost-block {
    text-align: center;
    margin: 20px 0;
}

.total-price {
    font-size: 1.8em;
    font-weight: bold;
}

.promo-code-section {
    display: flex;
    flex-direction: column;
}

.promo-message {
    text-align: center;
    color: #28a745;
    font-weight: bold;
}

.discount-block {
    background-color: #e8f5e9;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    color: #2e7d32;
    font-weight: bold;
}

        /* Стили модального окна */
        .modal-body .price-block {
            background-color: #e0f7fa; /* Нежно-бирюзовый цвет */
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .modal-body .price-block p {
            font-weight: bold;
            margin: 0 0 10px;
        }

        .modal-body .price-block ul {
            padding-left: 20px;
        }

        .modal-body .price-block ul li {
            list-style: disc;
        }

        .modal-body .total-price {
            font-size: 1.5em;
            font-weight: bold;
            text-align: center;
            margin-top: 10px;
        }

        .modal-body .discount-block {
            background-color: #e8f5e9; /* Зеленый блок */
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
            font-weight: bold;
            color: #2e7d32; /* Темно-зеленый текст */
        }

        /* Адаптивность для мобильных устройств */
        @media (max-width: 768px) {
            .studio-section {
                padding: 15px;
            }
            .gallery a {
                width: 150px;
                height: 150px;
            }
        }
.studio-cost {
    text-align: center;
    font-size: 1.2em;
    margin: 15px 0;
    color: #007bba;
    font-weight: bold;
}

a.calc-btn {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    background-color: #007bba;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

a.calc-btn:hover {
    background-color: #005f8f;
}


/* Основной стиль для блока */
.studio-highlight {
    background-color: #f5faff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* Заголовок */
.studio-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
    color: #007bba;
    font-weight: bold;
}

/* Контент блока: галерея и информация */
.studio-content {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; /* Центрирование по горизонтали */
    gap: 20px;
}

/* Информация о студии */
.studio-info {
    flex: 1;
    min-width: 300px;
    max-width: 320px;
    margin: 0 auto 0 auto;
}

/* Призыв к действию */
.studio-cta {
    font-size: 1.5em;
    color: #005f8f;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

/* Список услуг */
.studio-list {
    list-style: none;
    padding: 0;
    margin: 0 auto; /* Центрирование списка */
    max-width: 400px;
    text-align: left;
}

.studio-list li {
    margin-bottom: 10px;
    font-size: 1em;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #007bba;
    font-size: 1.5em;
    margin-right: 10px;
}
.check-icon.green {
    color: #28a745; /* Зеленая галочка */
    margin-left: 5px;
}

/* Галерея */
.studio-gallery {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    justify-content: center;
}

.studio-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}

.studio-gallery img:hover {
    transform: scale(1.05);
}

/* Кнопка бронирования */
.btn-booking {
    display: block;
    margin: 20px 0;
    padding: 15px;
    background-color: #007bba;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-booking:hover {
    background-color: #005f8f;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .studio-info {
        text-align: left;
    }

    .studio-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .studio-list {
        text-align: left;
        margin: 0;
    }
}
.video-container {
    margin: 20px auto;
    text-align: center;
    max-width: 560px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.marketplace-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.marketplace-icon {
    width: 50px;
    height: auto;
    transition: transform 0.2s ease-in-out;
}

.marketplace-icon:hover {
    transform: scale(1.1);
    cursor: default;
}
.iti {
    width: 100%;
}

#phone-error {
    font-size: 0.9em;
}

/* Анимация для модального окна */
.modal-content {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Пример Progress Bar */
.progress-container {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 5px;
    margin-top: 10px;
}

.progress-bar {
    width: 0;
    height: 8px;
    background-color: #4caf50;
    border-radius: 5px;
    transition: width 0.5s;
}

    .custom-package-section {
        background-color: #f5f5f5;
        padding: 40px 20px;
        border-radius: 10px;
    }
    .custom-package-title {
        font-size: 28px;
        margin-bottom: 15px;
        color: #333;
    }
    .custom-package-text {
        font-size: 18px;
        color: #555;
        margin-bottom: 20px;
    }

<!-- Стили для блока отзывов -->
  .testimonials {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        padding: 50px 0;
        background: linear-gradient(45deg, #f8b500, #fceabb);
      margin-bottom: 20px;
    }

    .testimonial-card {
        background-color: white;
        max-width:  width: 100%;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-top: 20px;
    }

    .testimonial-image img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .testimonial-text {
        font-size: 16px;
        font-style: italic;
        color: #333;
        margin-bottom: 10px;
    }

    .testimonial-author {
        font-size: 14px;
        font-weight: bold;
        color: #f8b500;
    }

    @media (max-width: 768px) {
        .testimonials {
            flex-direction: column;
            align-items: center;
        }
    }

      .seo-block {
        margin: 50px 0;
        padding: 30px;
        background-color: #f7f7f7;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .seo-block h2 {
        font-size: 24px;
        color: #007bba;
        margin-bottom: 15px;
    }

    .seo-block p {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }

    .advantages-list {
        list-style: none;
        padding: 0;
    }

    .advantages-list li {
        font-size: 16px;
        margin: 10px 0;
        display: flex;
        align-items: center;
    }

    .check-icon {
        margin-right: 10px;
        color: #25d366;
        font-size: 20px;
    }

    .seo-block a.btn-whatsapp {
        color: white;
        background-color: #25d366;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
    }

    .seo-block a.btn-whatsapp:hover {
        background-color: #1ebe57;
    }

    hr {
        margin: 30px 0;
        border: 0;
        border-top: 1px solid #e0e0e0;
    }

.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.exit-modal-content {
    background: #fff;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.exit-modal-content h2 {
    font-size: 24px;
    color: #333;
}

.exit-modal-content p,
.exit-modal-content ul {
    font-size: 16px;
    color: #666;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-close-modal {
    margin-top: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}