/* Стили CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Стили хедера */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #1a237e;
            color: #fff;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 25px;
        }
        
        .nav a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav a:hover {
            color: #ffd700;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Стили hero-секции */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.8)), url('../img/03.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            background-color: #ffd700;
            color: #1a237e;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Стили секций */
        section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #1a237e;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ffd700;
        }
        
        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Стили секции "О нас" */
        .about {
            background-color: #fff;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        .about-text h3 {
            font-size: 24px;
            color: #1a237e;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #555;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Стили секции "Описание продукта" */
        .product {
            background-color: #f9f9f9;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-card-content {
            padding: 25px;
        }
        
        .product-card-content h3 {
            font-size: 22px;
            color: #1a237e;
            margin-bottom: 15px;
        }
        
        .product-card-content p {
            color: #555;
            margin-bottom: 20px;
        }
        
        /* Стили секции "Цены" */
        .pricing {
            background-color: #fff;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.featured:before {
            content: 'Recomandat';
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: #ffd700;
            color: #1a237e;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 14px;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header {
            background-color: #1a237e;
            color: #fff;
            padding: 20px;
        }
        
        .pricing-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .pricing-price {
            font-size: 36px;
            font-weight: bold;
            color: #ffd700;
        }
        
        .pricing-price span {
            font-size: 16px;
            color: #fff;
        }
        
        .pricing-content {
            padding: 30px 20px;
        }
        
        .pricing-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: #555;
        }
        
        .pricing-list li:last-child {
            border-bottom: none;
        }
        
        /* Стили галереи */
        .gallery {
            background-color: #f9f9f9;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 35, 126, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay p {
            color: #fff;
            font-size: 18px;
            text-align: center;
            padding: 0 20px;
        }
        
        /* Стили отзывов */
        .testimonials {
            background-color: #fff;
        }
        
        .testimonials-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text:before {
            content: '"';
            font-size: 60px;
            color: #ffd700;
            position: absolute;
            top: -30px;
            left: -20px;
            opacity: 0.3;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .testimonial-author h4 {
            font-size: 18px;
            color: #1a237e;
            margin-bottom: 5px;
        }
        
        .testimonial-author p {
            color: #666;
            font-size: 14px;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .testimonial-dot.active {
            background-color: #ffd700;
        }
        
        /* Стили FAQ */
        .faq {
            background-color: #f9f9f9;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #fff;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #f5f5f5;
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: #1a237e;
            margin: 0;
        }
        
        .faq-icon {
            font-size: 20px;
            color: #ffd700;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: #555;
        }
        
        /* Стили "Почему мы" */
        .why-us {
            background-color: #fff;
        }
        
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .why-us-card {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background-color: #f9f9f9;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .why-us-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .why-us-icon {
            font-size: 40px;
            color: #ffd700;
            margin-bottom: 20px;
        }
        
        .why-us-card h3 {
            font-size: 22px;
            color: #1a237e;
            margin-bottom: 15px;
        }
        
        .why-us-card p {
            color: #555;
        }
        
        /* Стили "Наши преимущества" */
        .advantages {
            background-color: #f9f9f9;
            overflow: hidden;
            padding: 50px 0;
        }
        
        .marquee {
            display: flex;
            animation: marquee 20s linear infinite;
        }
        
        .marquee-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            margin-right: 50px;
            white-space: nowrap;
        }
        
        .marquee-item i {
            font-size: 24px;
            color: #ffd700;
            margin-right: 10px;
        }
        
        .marquee-item span {
            font-size: 20px;
            font-weight: bold;
            color: #1a237e;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Стили "Как мы работаем" */
        .how-we-work {
            background-color: #fff;
        }
        
        .process {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
        }
        
        .process:before {
            content: '';
            position: absolute;
            top: 60px;
            left: 50px;
            right: 50px;
            height: 2px;
            background-color: #e0e0e0;
            z-index: 0;
        }
        
        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: #1a237e;
            color: #ffd700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .process-step h3 {
            font-size: 20px;
            color: #1a237e;
            margin-bottom: 15px;
        }
        
        .process-step p {
            color: #555;
        }
        
        /* Стили формы обратной связи */
        .contact {
            background-color: #f9f9f9;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #1a237e;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1a237e;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 30px;
        }
        
        /* Стили Disclaimer */
        .disclaimer {
            background-color: #1a237e;
            color: #fff;
            padding: 30px 0;
            text-align: center;
        }
        
        .disclaimer p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* Стили футера */
        footer {
            background-color: #0d1854;
            color: #fff;
            padding: 50px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-logo h2 {
            font-size: 24px;
            color: #ffd700;
            margin-bottom: 15px;
        }
        
        .footer-logo p {
            color: #ccc;
            line-height: 1.6;
        }
        
        .footer-links {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-links h3 {
            font-size: 18px;
            color: #ffd700;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ffd700;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ffd700;
        }
        
        .footer-contact {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-contact h3 {
            font-size: 18px;
            color: #ffd700;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-contact h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ffd700;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            color: #ffd700;
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .contact-item p {
            color: #ccc;
            line-height: 1.6;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            color: #ccc;
            font-size: 14px;
        }
        
        /* Стили всплывающей плашки cookie */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #1a237e;
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            margin-bottom: 0;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .cookie-text a {
            color: #ffd700;
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .cookie-accept {
            background-color: #ffd700;
            color: #1a237e;
            font-weight: bold;
        }
        
        .cookie-accept:hover {
            background-color: #fff;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Стили модального окна */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal.show {
            display: flex;
        }
        
        .modal-content {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            animation: modalFadeIn 0.5s;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: #333;
        }
        
        .modal-icon {
            font-size: 50px;
            color: #ffd700;
            margin-bottom: 20px;
        }
        
        .modal h3 {
            font-size: 24px;
            color: #1a237e;
            margin-bottom: 15px;
        }
        
        .modal p {
            color: #555;
            margin-bottom: 25px;
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a237e;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .nav.show {
                transform: translateY(0);
            }
            
            .nav li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .process:before {
                display: none;
            }
            
            .process-step {
                margin-bottom: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
        }

