/* Reset et base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #2c3e50;
            background-color: #fefefe;
        }

        /* Container principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            text-align: left;
        }

        .logo h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .logo p {
            font-size: 1.1rem;
            opacity: 0.9;
            font-style: italic;
        }

        /* Navigation */
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 50%;
            background-color: #f39c12;
            transition: all 0.3s ease;
        }

        nav a:hover::after {
            width: 80%;
            left: 10%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d4af37" width="1200" height="600"/><path fill="%23e6c96e" d="M0 400l50-16.7c50-16.6 150-50 250-50s200 33.4 250 50 100 16.7 150 0 100-50 150-66.7c50-16.6 100-16.6 150 0s100 50 150 66.7c50 16.6 100 16.6 125 16.6l25 .1V600H0V400z"/></svg>') center/cover;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Main Content */
        main {
            padding: 60px 0;
        }

        .content-section {
            margin-bottom: 50px;
        }

        /* Typographie */
        h1, h2, h3, h4, h5, h6 {
            color: #8b4513;
            margin-bottom: 20px;
            font-weight: bold;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 2.2rem; border-bottom: 3px solid #f39c12; padding-bottom: 10px; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.5rem; }
        h5 { font-size: 1.3rem; }
        h6 { font-size: 1.1rem; }

        p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 1.1rem;
        }

        /* Liens */
        a {
            color: #e67e22;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #d35400;
            text-decoration: underline;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            color: white;
            text-decoration: none;
        }

        /* Listes */
        ul, ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }

        ul li, ol li {
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        ul li {
            list-style-type: none;
            position: relative;
        }

        ul li::before {
            content: '🍷';
            position: absolute;
            left: -25px;
        }

        /* Grille de contenu */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-left: 5px solid #f39c12;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .card h3 {
            color: #8b4513;
            margin-bottom: 15px;
        }

        /* Blockquotes */
        blockquote {
            border-left: 4px solid #f39c12;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #555;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            color: #f39c12;
            margin-bottom: 15px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 20px 0;
            border-top: 1px solid #34495e;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #f39c12;
        }

        .footer-links a:not(:last-child)::after {
            content: ' | ';
            color: #7f8c8d;
            margin-left: 15px;
        }

        .copyright {
            text-align: center;
            color: #95a5a6;
            font-size: 0.9rem;
            padding-top: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            nav ul {
                justify-content: center;
                gap: 15px;
            }

            .hero-content h2 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1.1rem;
                padding: 0 20px;
            }

            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
        }

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

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Tables */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }

        th {
            background: #8b4513;
            color: white;
            font-weight: bold;
        }

        tr:hover {
            background-color: #f8f9fa;
        }