 :root {
            --skoda-dark: #002d21;
            --skoda-green: #4ba82e;
            --skoda-light-green: #eef7eb;
            --skoda-silver: #f4f4f4;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* SPA Navigation States */
        #page-home, #page-privacy, #page-terms {
            display: none;
        }
        #page-home.active, #page-privacy.active, #page-terms.active {
            display: block;
        }

        /* Navbar */
        .navbar {
            padding: 1rem 0;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
        }
        .navbar-brand {
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--skoda-dark) !important;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-link {
            color: var(--skoda-dark) !important;
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            cursor: pointer;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--skoda-green);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-link:hover::after { width: 80%; }

        /* Hero Section */
        .hero-section {
            height: 90vh;
            position: relative;
        }
        .carousel-item {
            height: 90vh;
            background-size: cover;
            background-position: center;
        }
        .hero-overlay {
            background: linear-gradient(to right, rgba(0,45,33,0.8), rgba(0,45,33,0.2));
            height: 100%;
            display: flex;
            align-items: center;
        }

        /* Legal Header */
        .legal-header {
            background: var(--skoda-dark);
            padding: 120px 0 60px;
            color: white;
            text-align: center;
        }

        /* Buttons */
        .btn-skoda {
            background: var(--skoda-green);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            transition: var(--transition);
        }
        .btn-skoda:hover {
            background: #3c8d24;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(75, 168, 46, 0.3);
        }

        /* Section Titles */
        .section-tag {
            color: var(--skoda-green);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 10px;
        }
        .section-title {
            color: var(--skoda-dark);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        /* Model Cards */
        .model-card {
            border: none;
            border-radius: 12px;
            transition: var(--transition);
            background: white;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .model-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .model-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        /* FAQ Accordion */
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 12px !important;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }
        .accordion-button {
            font-weight: 700;
            color: var(--skoda-dark);
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--skoda-light-green);
            color: var(--skoda-green);
        }

        /* Floating UI */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
            transition: var(--transition);
        }
        .whatsapp-float:hover { transform: scale(1.1) rotate(10deg); color: white; }

        /* Legal Content Styles */
        .legal-content {
            padding: 80px 0;
            line-height: 1.8;
            color: #555;
        }
        .legal-content h3 {
            color: var(--skoda-dark);
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 20px;
            border-left: 4px solid var(--skoda-green);
            padding-left: 15px;
        }

        /* Footer */
        footer {
            background: var(--skoda-dark);
            color: #d1d1d1;
            padding: 80px 0 30px;
        }
        .footer-link { color: #d1d1d1; text-decoration: none; transition: var(--transition); cursor: pointer; }
        .footer-link:hover { color: var(--skoda-green); }

        .stat-box { border-right: 1px solid rgba(255,255,255,0.1); }
        .stat-box:last-child { border: none; }