
        :root {
            --primary: #000;
            --accent: #007ee5;
            --light: #f9f9f9;
        }
        * { box-sizing: border-box; }
        body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; margin: 0; line-height: 1.6; color: #333; }
        
        header { padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }
        .logo { width: 150px; }
        nav a { margin-left: 20px; text-decoration: none; color: #000; font-weight: bold; font-size: 0.9rem; text-transform: uppercase; }
        
        .hero { height: 60vh; background: url('/assets/Gastropig-714.jpg') center/cover; display: flex; align-items: center; justify-content: center; color: white; }
        .hero-content { background: rgba(0,0,0,0.6); padding: 40px; text-align: center; }
        
        .container { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
        .card img { width: 100%; height: 300px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        
        button { background: var(--accent); color: white; border: none; padding: 15px 30px; cursor: pointer; text-transform: uppercase; font-weight: bold; }
        
        footer { padding: 40px; background: #111; color: white; text-align: center; margin-top: 50px; }
        
        @media (max-width: 768px) {
            header { flex-direction: column; }
            nav { margin-top: 20px; }
        }
    