
        :root { --primary-green: #0d4f3d; --text-dark: #151414; --accent-blue: #0198ff; }
        body { font-family: 'Arial', sans-serif; color: var(--text-dark); margin: 0; line-height: 1.6; }
        header { background: #fff; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #eee; }
        nav ul { display: flex; gap: 15px; list-style: none; }
        a { color: var(--primary-green); text-decoration: none; font-weight: bold; }
        .hero { background: url('/assets/65ce89_8c3a32e040d74e9494cb1f9571123cb8~mv2.jpg') center/cover no-repeat; height: 500px; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
        .content { padding: 5%; max-width: 900px; margin: auto; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 2rem; }
        .card { border: 1px solid #eee; border-radius: 8px; padding: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        footer { background: #080808; color: white; text-align: center; padding: 2rem; margin-top: 3rem; }
        .icon { width: 30px; height: 30px; display: inline-block; background: #ccc; border-radius: 50%; vertical-align: middle; }
        @media (max-width: 768px) { nav { display: none; } }
    