
        :root {
            --primary: #006120;
            --dark: #111;
            --light: #f4f4f4;
            --accent: #00c2d1;
        }

        body { font-family: 'Lato', Arial, sans-serif; margin: 0; color: #333; line-height: 1.6; }
        header { background: #fff; padding: 20px 0; border-bottom: 3px solid var(--primary); }
        .container { max-width: 1100px; margin: auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
        
        .logo-text { font-weight: bold; font-size: 1.5rem; color: var(--primary); text-decoration: none; }
        .logo-placeholder { width: 200px; height: 50px; background: #eee; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: #888; border: 1px dashed #ccc; }
        
        nav ul { list-style: none; display: flex; gap: 20px; }
        nav a { text-decoration: none; color: var(--dark); font-weight: bold; }
        
        #hero { height: 400px; background: linear-gradient(rgba(0,97,32,0.6), rgba(0,97,32,0.6)), #333; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
        
        .btn { display: inline-block; padding: 15px 30px; background: var(--primary); color: white; text-decoration: none; font-weight: bold; border-radius: 4px; }
        
        .main-content { padding: 60px 0; }
        
        footer { background: var(--primary); color: white; padding: 40px 0; text-align: center; margin-top: 40px; }
        footer a { color: white; padding: 0 10px; }

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