body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 28px; font-weight: bold; color: #FF9900; text-transform: uppercase; letter-spacing: 2px; }
        nav { background: #FFEBCD; padding: 15px; margin-bottom: 30px; display: flex; justify-content: space-between; align-items: center; }
        nav ul { list-style: none; display: flex; gap: 20px; }
        nav a { text-decoration: none; color: #333; font-weight: 500; }
        .mobile-nav-toggle { display: none; cursor: pointer; }
        h1 { color: #2E8B57; border-bottom: 3px solid #FF9900; padding-bottom: 10px; }
        h2 { color: #4682B4; margin-top: 40px; }
        h3 { color: #8FBC8F; }
        .btn { display: inline-block; padding: 12px 25px; background: #FF9900; color: white; border-radius: 5px; text-decoration: none; margin: 15px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .download-section { background: #FFF8DC; padding: 25px; border-radius: 10px; margin: 30px 0; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 50px; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; position: absolute; top: 70px; right: 20px; background: #FFEBCD; padding: 20px; }
            nav ul.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            body { padding: 10px; }
        }
