
        :root {
            --primary: #f37022;
            --dark: #032830;
            --text: #141414;
            --white: #ffffff;
            --font: 'Poppins', sans-serif;
        }
        body { font-family: var(--font); margin: 0; color: var(--text); line-height: 1.6; }
        header { padding: 1rem 5%; background: var(--white); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }
        nav a { margin: 0 10px; text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.9rem; }
        .hero { position: relative; height: 80vh; background-image: url('/assets/4140gxlkmv3ll7r7rwhb7m54xfqd_Louvre_Abu_Dhabi_at_Night_854adf21b9.jpg'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
        .hero-overlay { background: rgba(0,0,0,0.4); padding: 3rem; color: white; text-align: center; }
        .btn { background: var(--primary); color: white; padding: 12px 30px; text-decoration: none; border-radius: 4px; display: inline-block; margin-top: 20px; }
        .container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
        .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
        .card { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .card img { width: 100%; height: 200px; object-fit: cover; }
        .card-body { padding: 15px; }
        footer { background: var(--dark); color: white; text-align: center; padding: 40px; margin-top: 50px; }
        @media (max-width: 768px) { header { flex-direction: column; } }
    