body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #f9f9f9; }
        header { background-color: #4CAF50; color: white; padding: 1rem; text-align: center; position: relative; }
        header .logo { font-size: 2rem; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-nav-toggle { display: none; position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
        main { max-width: 800px; margin: 2rem auto; padding: 0 1rem; }
        h1, h2, h3 { color: #2E7D32; }
        h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
        h2 { font-size: 1.8rem; margin-top: 2rem; }
        h3 { font-size: 1.4rem; margin-top: 1.5rem; }
        .btn { display: inline-block; background-color: #4CAF50; color: white; padding: 0.8rem 1.5rem; text-decoration: none; border-radius: 4px; margin: 0.5rem 0; font-weight: bold; }
        .btn:hover { background-color: #45a049; }
        img { max-width: 100%; height: auto; margin: 1rem 0; border-radius: 8px; }
        footer { background-color: #333; color: white; text-align: center; padding: 1.5rem; margin-top: 2rem; }
        footer a { color: #4CAF50; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
        }
