        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            right: 0;
            padding: 20px 40px;
            z-index: 1000;
            display: flex;
            gap: 30px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-style: italic;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #ff6600;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(180deg, #000 0%, #1a0a00 100%);
        }

        .logo-container {
            margin-bottom: 20px;
        }

        .logo-container img {
            max-width: 500px;
            width: 90%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(255, 102, 0, 0.3));
        }

        .logo-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 900;
            font-style: italic;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #ff6600, #ff9933);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }

        .subtitle {
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            font-weight: 300;
            margin-top: 20px;
            font-style: italic;
        }

        /* About Section */
        .about-section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            font-style: italic;
            margin-bottom: 40px;
            text-align: center;
            background: linear-gradient(135deg, #ff6600, #ff9933);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .about-card {
            padding: 40px;
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 153, 51, 0.05));
            border-radius: 20px;
            border: 2px solid rgba(255, 102, 0, 0.3);
            transition: all 0.3s;
        }

        .about-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 102, 0, 0.6);
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
        }

        .about-card h3 {
            font-size: 1.8rem;
            color: #ff6600;
            margin-bottom: 20px;
            font-style: italic;
        }

        .about-card p {
            line-height: 1.8;
            color: #ccc;
            font-size: 1.05rem;
        }

        .about-intro {
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #ccc;
            max-width: 900px;
            margin: 0 auto 40px;
        }

        /* Statistics Section */
        .stats-section {
            padding: 100px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .stat-card {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 153, 51, 0.05));
            border-radius: 20px;
            border: 2px solid rgba(255, 102, 0, 0.3);
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 102, 0, 0.6);
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
        }

        .stat-icon {
            font-size: 3rem;
            color: #ff6600;
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #ff6600;
            margin-bottom: 10px;
            font-style: italic;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #aaa;
            font-weight: 500;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-top: 60px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: start;
            gap: 20px;
            padding: 25px;
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 153, 51, 0.05));
            border-radius: 15px;
            border: 2px solid rgba(255, 102, 0, 0.3);
            transition: all 0.3s;
        }

        .contact-item:hover {
            border-color: rgba(255, 102, 0, 0.6);
            transform: translateX(10px);
        }

        .contact-icon {
            font-size: 2rem;
            color: #ff6600;
            min-width: 50px;
            text-align: center;
        }

        .contact-details h3 {
            font-size: 1.3rem;
            color: #ff6600;
            margin-bottom: 10px;
            font-style: italic;
        }

        .contact-details p {
            color: #ccc;
            line-height: 1.6;
        }

        .contact-details a {
            color: #ff9933;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: #ff6600;
        }

        /* Contact Form */
        .contact-form {
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 153, 51, 0.05));
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(255, 102, 0, 0.3);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ff9933;
            font-weight: bold;
            font-size: 1.05rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 102, 0, 0.3);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6600;
            background: rgba(0, 0, 0, 0.7);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .captcha-group {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .captcha-question {
            color: #ff9933;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .captcha-group input {
            width: 80px;
            padding: 10px;
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 102, 0, 0.3);
            border-radius: 10px;
            color: #fff;
            font-size: 1.2rem;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #ff6600, #ff9933);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            font-style: italic;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
        }

        .form-message {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: bold;
        }

        .form-message.success {
            background: rgba(40, 167, 69, 0.2);
            border: 2px solid #28a745;
            color: #28a745;
        }

        .form-message.error {
            background: rgba(220, 53, 69, 0.2);
            border: 2px solid #dc3545;
            color: #dc3545;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid #333;
            padding: 25px 0;
            cursor: pointer;
            transition: all 0.3s;
        }

        .faq-item:hover {
            padding-left: 20px;
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .faq-question i {
            color: #ff6600;
            font-size: 12px;
            transition: transform 0.3s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-left: 30px;
            color: #aaa;
            margin-top: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            margin-top: 15px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(90deg);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 20px;
            color: #666;
            font-size: 14px;
            border-top: 1px solid #222;
        }

        footer p {
            margin: 8px 0;
        }

        .footer-designer {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #222;
            font-size: 13px;
            color: #888;
        }

        .footer-designer a {
            color: #ff6600;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        .footer-designer a:hover {
            color: #ff9933;
            text-decoration: underline;
        }

        .footer-designer i {
            color: #ff6600;
            margin-right: 5px;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            margin-top: 40px;
            padding: 18px 50px;
            background: #ff6600;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            border-radius: 50px;
            transition: all 0.3s;
            font-style: italic;
        }

        .cta-button:hover {
            background: #ff9933;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            animation: pulse 2s infinite;
        }

        .whatsapp-button {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 25px;
            background: #25D366;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s;
        }

        .whatsapp-button:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-icon {
            width: 30px;
            height: 30px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #25D366;
        }

        .whatsapp-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .whatsapp-title {
            font-size: 14px;
            font-weight: bold;
        }

        .whatsapp-subtitle {
            font-size: 12px;
            opacity: 0.9;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            nav a {
                font-size: 13px;
            }

            .section-title {
                text-align: center;
            }

            .logo-container img {
                max-width: 300px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-card {
                padding: 30px 15px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 0.95rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 30px 20px;
            }

            /* Version mobile du bouton WhatsApp */
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-button {
                padding: 12px 20px;
                gap: 10px;
            }

            .whatsapp-text {
                display: none;
            }

            .whatsapp-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .whatsapp-button {
                border-radius: 50%;
                padding: 0;
                width: 60px;
                height: 60px;
                justify-content: center;
            }
        }