
        :root {
            --primary-blue: #00295d;
            --accent-red: #d6341d;
            --light-grey: #eeeeee;
            --text-color: #444444;
            --system-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        body { font-family: var(--system-font); color: var(--text-color); background: var(--light-grey); margin: 0; line-height: 1.7; }
        #wrapper { max-width: 1150px; margin: 0 auto; background: white; padding: 20px; }
        header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 2px solid var(--primary-blue); }
        .logo-img { max-height: 80px; width: auto; }
        nav ul { list-style: none; display: flex; gap: 20px; padding: 0; }
        nav a { text-decoration: none; color: var(--primary-blue); font-weight: bold; }
        .hero { position: relative; width: 100%; height: 400px; background: #ccc; overflow: hidden; margin: 20px 0; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }
        .hero-overlay { position: absolute; bottom: 0; background: rgba(0,0,0,0.7); color: white; padding: 20px; width: 100%; }
        
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin: 20px 0; }
        .card { border: 1px solid #ddd; padding: 15px; border-radius: 4px; }
        .card img { max-width: 100%; height: auto; border-radius: 4px; }
        
        footer { margin-top: 40px; padding: 20px; background: var(--primary-blue); color: white; text-align: center; }
        
        /* Icons */
        .icon-svg { display: inline-block; width: 24px; height: 24px; vertical-align: middle; fill: white; }
        
        @media (max-width: 768px) { nav ul { flex-direction: column; } }
    