        :root {
            --gold: #d4af37;
            --dark: #0a0a0a;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Segoe UI', system-ui, sans-serif; 
            background: #0a0a0a; 
            color: #eee; 
            line-height: 1.6;
        }

        header {
            position: fixed;
            top: 0; width: 100%;
            background: rgba(10,10,10,0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(212,175,55,0.2);
        }
        
        .logo { 
            font-size: 2.2rem; 
            font-weight: 800; 
            color: var(--gold); 
            text-decoration: none; 
        }

        nav a {
            color: #ddd; 
            margin-left: 2rem; 
            text-decoration: none; 
            font-weight: 500;
        }
        nav a:hover { color: var(--gold); }

        .btn {
            background: var(--gold);
            color: #000;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
        }
        .btn:hover { 
            background: white; 
            transform: translateY(-3px); 
        }
		
       /* Гамбургер меню */
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--gold);
            cursor: pointer;
            z-index: 1001;
        }

        /* Мобильное меню */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background: #0a0a0a;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            font-size: 1.6rem;
            transition: left 0.4s ease;
            z-index: 999;
        }
        .mobile-menu.active {
            left: 0;
        }
        .mobile-menu a {
            color: #ddd;
            text-decoration: none;
        }
        .mobile-menu .btn {
            margin-top: 2rem;
        }

        /* Адаптив */
        @media (max-width: 992px) {
            nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
			#knop1 { display:none; }
						
        }		

       /* Hero с вашим изображением */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)), 
                        url('resources/hero.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 20px;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 5rem;
            line-height: 1.05;
            margin-bottom: 1rem;
            text-shadow: 0 4px 15px rgba(0,0,0,0.8);
        }
        .hero-content .subtitle {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }
		

        .section {
            padding: 100px 5%;
        }
        .section-title {
            text-align: center;
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 4rem;
        }

        .routes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        .route-card {
            background: #111;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(212,175,55,0.15);
            transition: 0.4s;
        }
        .route-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
        }
        .route-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        .route-info {
            padding: 1.8rem;
        }
        .route-info h3 {
            color: var(--gold);
            margin-bottom: 0.8rem;
        }

        footer {
            background: #000;
            padding: 5rem 5% 3rem;
            text-align: center;
        }
		footer a {
			color:#ffffff;
		}
		
        .features {
            padding: 100px 5%;
            background: var(--dark);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            text-align: center;
        }
        
        .feature-card {
            background: #111;
            padding: 3rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(212,175,55,0.1);
        }
        
        .feature-card i {
            font-size: 3.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
		
        .pricing {
            padding: 100px 5%;
            background: #111;
        }
        
        .pricing h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 4rem;
            color: var(--gold);
        }
        
        .price-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .price-card {
            background: #1a1a1a;
            border: 2px solid #333;
            border-radius: 20px;
            padding: 3rem 2.5rem;
            width: 380px;
            transition: all 0.4s;
        }
        
        .price-card.popular {
            border-color: var(--gold);
            transform: scale(1.05);
        }
        
        .price-card h3 {
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        
        .price {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin: 1rem 0;
        }		
       .how-it-works {
            padding: 100px 5%;
            background: var(--dark);
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }
        
        .step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gold);
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 2rem;
        }		
		.gold { color: var(--gold); }
		
       /* Локация с новой картой */
        .location {
            padding: 120px 5%;
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), 
                        url('resources/map.jpg') center/cover no-repeat;
            text-align: center;
            position: relative;
        }

        .location-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
		
       /* FAQ Аккордеон */
        .faq {
            padding: 100px 5%;
            background: #111;
        }
        .faq-item {
			max-width:600px;
            margin: 0 auto;
            position: relative;			
            background: #1a1a1a;
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(212,175,55,0.1);
        }
        .faq-question {
            padding: 1.4rem 1.8rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s;
        }
        .faq-question:hover {
            background: #222;
        }
        .faq-answer {
            padding: 0 1.8rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            color: #ccc;
        }
        .faq-item.active .faq-answer {
            padding: 1.4rem 1.8rem;
            max-height: 300px;
        }
        .faq-item.active .faq-question {
            color: var(--gold);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 4rem;
        }		

        .section-title {
            text-align: center;
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 3rem;
            text-shadow: 0 3px 10px rgba(0,0,0,0.8);
        }
		

        .map-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #1a1a1a;
            color: var(--gold);
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 2rem;
            transition: 0.3s;
        }
        .map-link:hover {
            background: var(--gold);
            color: #000;
            transform: translateY(-5px);
        }	
       /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        .modal-content {
            background: #111;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            max-width: 420px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--gold);
        }
        .modal-content h2 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 2rem;
        }
        .contact-btn {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #1a1a1a;
            color: #eee;
            padding: 16px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: 0.3s;
        }
        .contact-btn:hover {
            background: var(--gold);
            color: #000;
            transform: translateX(10px);
        }
        .contact-btn i {
            font-size: 1.5rem;
            width: 28px;
        }

        /* ==================== БЛОК СЕРТИФИКАТ ==================== */
        .certificate {
            padding: 120px 5%;
            background: #111;
            text-align: center;
        }

        .certificate-stack {
            position: relative;
            height: 400px;
            max-width: 200px;
            margin: 1rem auto;
        }

        .cert-image {
            position: absolute;
            width: 100%;
            max-width: 420px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border: 6px solid #fff;
            box-shadow: 0 20px 35px rgba(0,0,0,0.75);
            border-radius: 12px;
            transition: all 0.4s ease;
        }

        /* 7 сертификатов с разными поворотами */
        .cert-image:nth-child(1) { transform: translate(-50%, -50%) rotate(-18deg); z-index: 1; }
        .cert-image:nth-child(2) { transform: translate(-50%, -50%) rotate(-13deg); z-index: 2; }
        .cert-image:nth-child(3) { transform: translate(-50%, -50%) rotate(-8deg);  z-index: 3; }
        .cert-image:nth-child(4) { transform: translate(-50%, -50%) rotate(-3deg);  z-index: 4; }
        .cert-image:nth-child(5) { transform: translate(-50%, -50%) rotate(2deg);   z-index: 5; }
        .cert-image:nth-child(6) { transform: translate(-50%, -50%) rotate(9deg);  z-index: 6; }
        .cert-image:nth-child(7) { transform: translate(-50%, -50%) rotate(15deg); z-index: 7; }

		@media (max-width: 992px) {
            nav { display: none; }
            .hamburger { display: block; }
            .hero-content h1 { font-size: 3.8rem; }
            .certificate-stack { height: 480px; }
            .cert-image { max-width: 320px; }
        }