 :root {
            --primary: #3a0ca3;
            --secondary: #f72585;
            --accent: #4cc9f0;
            --dark: #14213d;
            --light: #f8f9fa;
            --random1: #7209b7;
            --random2: #4361ee;
            --random3: #4895ef;
            --random4: #560bad;
        }

        @font-face {
            font-family: 'Grotesque';
            src: url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&display=swap');
        }

        @font-face {
            font-family: 'Mono';
            src: url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Grotesque', sans-serif;
            background-color: #f0f0f0;
            color: #333;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Нео-бруталистские элементы */
        .brutal-border {
            border: 3px solid var(--dark);
            box-shadow: 8px 8px 0 var(--dark);
        }

        .brutal-card {
            background: white;
            padding: 1.5rem;
            margin: 1rem;
            border: 2px solid var(--dark);
            box-shadow: 5px 5px 0 var(--dark);
            transition: all 0.3s ease;
        }

        .brutal-card:hover {
            box-shadow: 8px 8px 0 var(--dark);
            transform: translate(-2px, -2px);
        }

        /* Стекломорфные элементы */
        .glassmorphism {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

        /* Хаотичная анимация */
        @keyframes chaoticFloat {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(5px, 10px) rotate(2deg);
            }
            50% {
                transform: translate(-5px, 5px) rotate(-2deg);
            }
            75% {
                transform: translate(8px, -5px) rotate(3deg);
            }
        }

        .chaotic-element {
            animation: chaoticFloat 8s ease-in-out infinite;
        }

        /* Хедер */
        header {
            background: linear-gradient(135deg, var(--primary), var(--random4));
            color: white;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -1px;
            color: #fff;
            text-decoration: none;
        }

        .logo span {
            color: var(--accent);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Главный баннер */
        .hero {
            height: 100vh;
            background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            margin-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
            padding-top: 4em;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Секции */
        section {
            padding: 5rem 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--primary);
        }

        /* О нас */
        .about {
            background-color: white;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            object-fit: cover;
        }

        /* Услуги */
        .services {
            background-color: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* Команда */
        .team {
            background-color: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-member {
            text-align: center;
        }

        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 5px solid var(--accent);
        }

        /* FAQ */
        .faq {
            background-color: var(--light);
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 1rem;
        }

        .accordion-header {
            background-color: var(--primary);
            color: white;
            padding: 1rem;
            cursor: pointer;
            border-radius: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-content {
            padding: 1rem;
            background-color: white;
            border-radius: 0 0 5px 5px;
            display: none;
        }

        .accordion-content.active {
            display: block;
        }

        /* Форма */
        .book-form {
            background: linear-gradient(135deg, var(--random1), var(--random3));
            color: white;
            text-align: center;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.8);
        }

        /* Блог */
        .blog {
            background-color: white;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-card {
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        /* Контакты */
        .contact {
            background-color: var(--light);
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 1rem;
        }

        .contact-map {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: #ddd;
            border-radius: 10px;
            overflow: hidden;
        }

        /* Футер */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 2rem;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .footer-col {
            flex: 1;
            min-width: 200px;
        }

        .footer-col h3 {
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.5rem;
        }

        .footer-col ul li a {
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            color: var(--accent);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Всплывающие окна */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            position: relative;
        }

        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
        }

        /* Cookie */
        .cookie-consent {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--dark);
            color: white;
            padding: 1rem 2rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 90%;
            max-width: 1000px;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .cookie-consent p {
            margin-right: 1rem;
        }

        .cookie-btn {
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
        }

        .cookie-btn:hover {
            background-color: white;
        }

        /* Адаптация */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
            }

            nav ul.active {
                right: 0;
            }

            nav ul li {
                margin: 1.5rem 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);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cookie-consent {
                flex-direction: column;
                text-align: center;
            }

            .cookie-consent p {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

        /* Случайные анимированные элементы */
        .floating-shape {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            opacity: 0.3;
            z-index: -1;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(50px, 50px);
            }
            50% {
                transform: translate(-30px, 70px);
            }
            75% {
                transform: translate(70px, -30px);
            }
        }

        .shape1 {
            top: 20%;
            left: 10%;
            width: 80px;
            height: 80px;
            animation-duration: 20s;
        }

        .shape2 {
            bottom: 15%;
            right: 10%;
            width: 120px;
            height: 120px;
            animation-duration: 25s;
            animation-delay: 2s;
        }

        .shape3 {
            top: 50%;
            left: 30%;
            width: 60px;
            height: 60px;
            animation-duration: 18s;
            animation-delay: 1s;
        }

        /* Специфичные стили для хаотичных элементов */
        .random-element {
            position: absolute;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            opacity: 0.2;
            z-index: -1;
            animation: chaoticFloat 10s infinite ease-in-out;
        }

        .re1 {
            top: 10%;
            right: 15%;
            animation-delay: 0.5s;
        }

        .re2 {
            bottom: 20%;
            left: 10%;
            animation-delay: 1.5s;
            background-color: var(--accent);
        }

        .re3 {
            top: 30%;
            left: 20%;
            animation-delay: 2s;
            background-color: var(--random2);
        }