body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1, h2, h3 { color: #FF4500; margin-top: 30px; }
        h1 { font-size: 2.5em; border-bottom: 2px solid #FF4500; }
        h2 { font-size: 1.8em; }
        h3 { font-size: 1.5em; }
        .nav { background: #FF4500; color: white; padding: 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; }
        .nav-logo { font-size: 2em; font-weight: bold; }
        .nav-links a { color: white; margin: 0 10px; text-decoration: none; }
        .mobile-toggle { display: none; }
        .content { margin: 20px 0; }
        .btn { display: inline-block; padding: 10px 20px; background: #FF4500; color: white; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .image-container { text-align: center; margin: 30px 0; }
        .image-container img { max-width: 100%; height: auto; }
        .tags { margin: 20px 0; }
        .tags a { background: #eee; padding: 5px 10px; margin: 5px; display: inline-block; }
        .footer { margin-top: 50px; padding: 20px; background: #333; color: white; text-align: center; }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .nav { flex-direction: column; }
        }
