
        :root {
            --primary: #003e7d;
            --secondary: #d63031;
            --bg: #f5f6fa;
            --text: #2d3436;
        }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; margin: 0; background: var(--bg); color: var(--text); line-height: 1.6; }
        header { background: #fff; border-bottom: 2px solid var(--primary); padding: 1rem; }
        .container { max-width: 1100px; margin: auto; padding: 20px; }
        nav ul { display: flex; flex-wrap: wrap; list-style: none; padding: 0; gap: 15px; }
        nav a { text-decoration: none; color: var(--primary); font-weight: bold; font-size: 0.9rem; }
        .hero { position: relative; width: 100%; height: 400px; background: linear-gradient(var(--primary), #000); display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
        .hero-bg { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; opacity: 0.4; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
        .card { background: white; padding: 15px; border-radius: 8px; box-shadow: var(--wp--preset--shadow--natural); }
        .card img { width: 100%; border-radius: 4px; display: block; }
        footer { text-align: center; padding: 40px; border-top: 1px solid #ddd; margin-top: 40px; }
        @media (max-width: 768px) { nav { flex-direction: column; } }
    