   /* Styles simplifiés */
        :root {
            --primary: #ffffff;
            --secondary: #FF8E53;
            --dark: #2c1810;
            --light: #fff8f6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            line-height: 1.6;
            background: var(--light);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Barre de navigation */
        .navbar {
            background: rgba(255, 107, 53, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:hover {
            color: var(--dark);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--dark);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Header */
        header {
            background: linear-gradient(rgba(255, 107, 53, 0.158), rgba(255, 143, 83, 0.486)), url(../Follio/Img/Quad1.jpeg);
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 20px 100px;
        }
        
        .hero-badge {
            background: gold;
            color: #333;
            padding: 10px 25px;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            margin: 10px;
            transition: transform 0.3s;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            background: var(--secondary);
        }
        
        /* Section Circuits */
        .circuits {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .circuits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .circuit-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .circuit-card:hover {
            transform: translateY(-10px);
        }
        
        .circuit-image {
            height: 250px;
            overflow: hidden;
        }
        
        .circuit-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .circuit-content {
            padding: 25px;
        }
        
        .circuit-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .circuit-info {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            padding: 15px;
            background: var(--light);
            border-radius: 10px;
        }
        
        .info-item {
            text-align: center;
        }
        
        .info-item i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 5px;
            display: block;
        }
        
        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin: 20px 0;
        }
        
        /* Section Quads */
        .quads {
            padding: 80px 0;
            background: white;
        }
        
        .quads-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .quad-card {
            text-align: center;
            padding: 30px;
            background: var(--light);
            border-radius: 15px;
        }
        
        .quad-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a1a1a, #2c1810);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .footer-col {
            padding: 0 15px;
        }
        
        .footer-title {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-text {
            margin-bottom: 20px;
            line-height: 1.8;
            opacity: 0.9;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .footer-links i {
            margin-right: 10px;
            font-size: 0.8rem;
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 15px;
            color: var(--primary);
            width: 20px;
            text-align: center;
        }
        
        .footer-socials {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .newsletter-box h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .newsletter-box p {
            margin-bottom: 15px;
            opacity: 0.9;
            font-size: 0.9rem;
        }
        
        .newsletter-box form {
            display: flex;
            margin-top: 15px;
        }
        
        .newsletter-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .newsletter-box input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .newsletter-box button:hover {
            background: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .circuits-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }