
        /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', Arial, sans-serif;
        }

        body {
            color: #fff;
            background-color: #0a0a0a;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4, h5 {
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        h2 {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
        }

        p {
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .section {
            padding: 100px 0;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #D4AF37;
            color: #000;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: #E5C158;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #D4AF37;
            color: #D4AF37;
        }

        .btn-outline:hover {
            background-color: #D4AF37;
            color: #000;
        }

        /* Хедер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 15px 0;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
        }

        .logo span {
            color: #D4AF37;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: #fff;
            font-weight: 500;
            font-size: 16px;
            position: relative;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #D4AF37;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .phone-number {
            font-size: 18px;
            font-weight: 600;
            color: #D4AF37;
            margin-left: 30px;
            display: flex;
            align-items: center;
        }

        .phone-number i {
            margin-right: 8px;
        }

        /* Hero section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
        }

        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero h1 span {
            color: #D4AF37;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .experience {
            margin-top: 20px;
            font-size: 16px;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        /* Преимущества */
        .advantages {
            background-color: #0d0d0d;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .advantage-item {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .advantage-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .advantage-icon {
            font-size: 48px;
            color: #D4AF37;
            margin-bottom: 20px;
        }

        .advantage-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #D4AF37;
        }

        .advantage-text {
            font-size: 16px;
            color: #ccc;
        }

        /* Услуги */
        .services {
            background-color: #0a0a0a;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 300px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        }

        .service-title {
            font-size: 24px;
            margin-bottom: 10px;
            color: #fff;
        }

        .service-desc {
            font-size: 14px;
            color: #ccc;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-desc {
            opacity: 1;
            transform: translateY(0);
        }

        /* Как это работает */
        .how-it-works {
            background-color: #0d0d0d;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 20px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #D4AF37;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #D4AF37;
        }

        .step-desc {
            font-size: 16px;
            color: #ccc;
        }

        .steps-line {
            position: absolute;
            top: 30px;
            left: 15%;
            width: 70%;
            height: 2px;
            background-color: rgba(212, 175, 55, 0.3);
            z-index: -1;
        }

        /* Популярные направления */
        .destinations {
            background-color: #0a0a0a;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .destination-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
            cursor: pointer;
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .destination-card:hover img {
            transform: scale(1.1);
        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        }

        .destination-name {
            font-size: 22px;
            margin-bottom: 5px;
        }

        .destination-details {
            font-size: 14px;
            color: #ccc;
        }

        .destination-price {
            font-size: 16px;
            color: #D4AF37;
            margin-top: 5px;
        }

        /* Флот */
        .fleet {
            background-color: #0d0d0d;
            text-align: center;
        }

        .fleet-preview {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 400px;
            margin-bottom: 40px;
        }

        .fleet-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .fleet-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 20px;
        }

        .fleet-desc {
            max-width: 700px;
            margin: 0 auto 40px;
            color: #ccc;
        }

        .manufacturers {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .manufacturer {
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .manufacturer:hover {
            opacity: 1;
        }

        /* Отзывы */
        .testimonials {
            background-color: #0a0a0a;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.03);
        }

        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
            color: #ddd;
        }

        .testimonial-author {
            font-size: 16px;
            color: #D4AF37;
        }

        .testimonial-position {
            font-size: 14px;
            color: #999;
            margin-top: 5px;
        }

        /* FAQ */
        .faq {
            background-color: #0d0d0d;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            background-color: rgba(255, 255, 255, 0.03);
        }

        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .faq-question h3 {
            font-size: 18px;
            font-weight: 500;
        }

        .faq-icon {
            width: 20px;
            height: 20px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .faq-icon:before,
        .faq-icon:after {
            content: '';
            position: absolute;
            background-color: #D4AF37;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 100%;
            height: 2px;
        }

        .faq-icon:after {
            transform: translateY(-50%) rotate(90deg);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon:after {
            transform: translateY(-50%) rotate(0);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-answer p {
            color: #ccc;
            font-size: 16px;
            line-height: 1.6;
        }

        /* CTA блок */
        .cta {
            background-image: url('/api/placeholder/1920/1080');
            background-size: cover;
            background-position: center;
            position: relative;
            text-align: center;
            padding: 100px 0;
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 48px;
            margin-bottom: 30px;
        }

        /* Footer */
        footer {
            background-color: #000;
            padding: 80px 0 30px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 25px;
            color: #D4AF37;
        }

        .footer-contact p {
            margin-bottom: 15px;
            color: #ccc;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: #D4AF37;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #ccc;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #D4AF37;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #666;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #D4AF37;
            color: #000;
        }

        /* Мобильное меню */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            height: 24px;
            width: 30px;
            cursor: pointer;
        }

        .mobile-menu-btn span {
            width: 100%;
            height: 2px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        /* Адаптивность */
        @media screen and (max-width: 1024px) {
            h2 {
                font-size: 32px;
            }
            
            .hero h1 {
                font-size: 48px;
            }

            .hero p {
                font-size: 18px;
            }

            .section {
                padding: 80px 0;
            }

            .steps {
                flex-direction: column;
                gap: 40px;
            }

            .steps-line {
                display: none;
            }
        }

        @media screen and (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }

            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #000;
                padding: 20px 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }

            nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .advantage-item {
                padding: 20px;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 480px) {
            h2 {
                font-size: 28px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            .section {
                padding: 60px 0;
            }
        }
