body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #FF9933; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; }
        .mobile-toggle { display: none; position: absolute; top: 15px; right: 15px; }
        h1 { color: #138808; border-bottom: 3px solid #FF9933; padding-bottom: 10px; }
        h2 { color: #FF9933; margin-top: 30px; }
        h3 { color: #138808; }
        .btn { display: inline-block; padding: 10px 20px; background: #138808; color: white; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; display: none; }
            .mobile-toggle { display: block; }
            .nav-active { display: flex; }
        }
