        /* Глобальные стили */
        :root {
            --primary: #E63946;
            --secondary: #457B9D;
            --accent: #A8DADC;
            --dark: #1D3557;
            --light: #F1FAEE;
            --highlight: #FFBE0B;
            --text: #333333;
            --bg: #F8F4E3;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto Condensed', 'Courier New', monospace;
        }
        
        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L100 0 L100 100 L0 100 Z" fill="none" stroke="%231D3557" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
            background-size: 20px 20px;
        }
        
        /* Типография */
        h1, h2, h3, h4 {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 3rem;
            color: var(--primary);
            text-shadow: 3px 3px 0 var(--dark);
            margin-bottom: 1rem;
        }
        
        h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            border-bottom: 3px solid var(--highlight);
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--dark);
            text-decoration: underline;
        }
        
        /* Шапка */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: var(--light);
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 3px solid var(--highlight);
        }
        
        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--highlight);
        }
        
        /* Навигация */
        nav {
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--highlight);
            text-decoration: none;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--highlight);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Бургер-меню */
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Основное содержимое */
        main {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        section {
            margin-bottom: 4rem;
            padding: 2rem;
            background-color: rgba(255, 255, 255, 0.8);
            box-shadow: 8px 8px 0 var(--dark);
            border: 2px solid var(--dark);
            position: relative;
            overflow: hidden;
        }
        
        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--highlight));
        }
        
        /* Герой секция */
        .hero {
            background: linear-gradient(135deg, rgba(29, 53, 87, 0.9), rgba(69, 123, 157, 0.8)), url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0 L100 0 L100 100 L0 100 Z" fill="none" stroke="%23F1FAEE" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
            color: var(--light);
            text-align: center;
            padding: 5rem 2rem;
            margin-bottom: 4rem;
            position: relative;
            border: none;
            box-shadow: none;
        }
        
        .hero h1 {
            color: var(--light);
            text-shadow: 3px 3px 0 var(--dark);
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        /* Кнопки */
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 0;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 4px 4px 0 var(--dark);
            margin: 0.5rem;
        }
        
        .btn:hover {
            background-color: var(--highlight);
            color: var(--dark);
            box-shadow: 6px 6px 0 var(--dark);
            transform: translate(-2px, -2px);
            text-decoration: none;
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--light);
            color: var(--light);
        }
        
        .btn-secondary:hover {
            background-color: var(--light);
            color: var(--dark);
        }
        
        /* Особенности */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .feature {
            background-color: var(--light);
            padding: 1.5rem;
            border-left: 5px solid var(--primary);
            box-shadow: 4px 4px 0 var(--dark);
        }
        
        .feature h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        /* Галерея */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
            box-shadow: 4px 4px 0 var(--dark);
            border: 2px solid var(--dark);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Отзывы */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial {
            background-color: var(--light);
            padding: 1.5rem;
            border: 2px solid var(--dark);
            box-shadow: 4px 4px 0 var(--dark);
            position: relative;
        }
        
        .testimonial::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 5rem;
            color: rgba(230, 57, 70, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }
        
        /* Форма */
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid var(--dark);
            background-color: var(--light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.3);
        }
        
        /* Цены */
        .pricing {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .price-card {
            background-color: var(--light);
            padding: 2rem;
            border: 2px solid var(--dark);
            box-shadow: 4px 4px 0 var(--dark);
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            transform: translate(-5px, -5px);
            box-shadow: 8px 8px 0 var(--dark);
        }
        
        .price-card.popular {
            border-top: 5px solid var(--highlight);
        }
        
        .price-card h3 {
            color: var(--primary);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark);
            margin: 1rem 0;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--text);
        }
        
        /* FAQ */
        .faq-item {
            margin-bottom: 1rem;
            border: 2px solid var(--dark);
            box-shadow: 4px 4px 0 var(--dark);
        }
        
        .faq-question {
            padding: 1rem;
            background-color: var(--light);
            cursor: pointer;
            font-weight: bold;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 1rem;
            font-size: 1.5rem;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(168, 218, 220, 0.2);
        }
        
        .faq-answer.show {
            padding: 1rem;
            max-height: 500px;
        }
        
        /* Контакты */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .contact-icon {
            margin-right: 1rem;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        /* Футер */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            color: var(--light);
            margin: 0 1rem;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        
        .footer-links a:hover {
            color: var(--highlight);
        }
        
        .copyright {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: rgba(241, 250, 238, 0.7);
        }
        
        /* Попап */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: var(--light);
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 8px 8px 0 var(--dark);
            border: 2px solid var(--dark);
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        
        /* Cookie уведомление */
        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: var(--light);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-notice.show {
            transform: translateY(0);
        }
        
        .cookie-notice p {
            margin-bottom: 0;
            font-size: 0.9rem;
            max-width: 800px;
        }
        
        .cookie-btn {
            background-color: var(--highlight);
            color: var(--dark);
            border: none;
            padding: 0.5rem 1rem;
            font-weight: bold;
            cursor: pointer;
            margin-left: 1rem;
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .animate {
            animation-duration: 1s;
            animation-fill-mode: both;
        }
        
        .fadeIn {
            animation-name: fadeIn;
        }
        
        .slideUp {
            animation-name: slideUp;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Параллакс эффект */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 3rem 0;
        }
        
        .parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(29, 53, 87, 0.6);
        }
        
        .parallax-content {
            position: relative;
            z-index: 1;
            color: var(--light);
            text-align: center;
            padding: 2rem;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }
            
            .nav-links {
                position: absolute;
                right: 0;
                top: 60px;
                background-color: var(--dark);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            .nav-links.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            .nav-links li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            section {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .btn {
                display: block;
                width: 100%;
                margin: 0.5rem 0;
            }
            
            .hero {
                padding: 3rem 1rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .cookie-notice {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-btn {
                margin: 0.5rem 0 0;
            }
        }

        #disclaimer {
    background-color: var(--light);
    padding: 1rem;
    margin: 2rem 0;
    border: 2px solid var(--dark);
    font-size: 0.9rem;
    text-align: center;
}