
        :root {
            --primary-green: #008250;
            --dark-blue: #162d3d;
            --text-dark: #212121;
            --bg-light: #f9f9f9;
        }

        body {
            font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
        }

        header {
            background: #fff;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #eee;
        }

        .logo { width: 100px; height: 100px; background: #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { color: var(--dark-blue); font-weight: bold; text-transform: uppercase; font-size: 0.9rem; }

        .hero {
            height: 60vh;
            background: url('/assets/101e1a_27f73128206e42328bc9c8c7f5fbaf5c~mv2.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .container { max-width: 1000px; margin: 40px auto; padding: 0 20px; }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .card { border: 1px solid #eee; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        .card img { width: 100%; height: 200px; object-fit: cover; }
        .card-content { padding: 15px; }

        footer { text-align: center; padding: 40px; background: var(--dark-blue); color: white; margin-top: 50px; }

        @media (max-width: 768px) {
            header { flex-direction: column; }
            nav ul { flex-direction: column; gap: 10px; margin-top: 20px; }
        }
    