body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { font-size: 2.5em; color: #FF4500; text-align: center; margin-bottom: 30px; }
        h2 { font-size: 1.8em; color: #2E8B57; margin-top: 40px; border-bottom: 2px solid #FFD700; padding-bottom: 5px; }
        h3 { font-size: 1.4em; color: #4682B4; margin-top: 30px; }
        p { margin-bottom: 15px; }
        .btn { display: inline-block; background: #FF4500; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; margin: 10px 0; font-weight: bold; }
        .nav { background: #111; padding: 15px; position: relative; }
        .nav-logo { font-size: 2em; font-weight: bold; color: #FFD700; }
        .nav-links { display: flex; justify-content: space-around; margin-top: 10px; }
        .nav-links a { color: white; text-decoration: none; }
        .mobile-toggle { display: none; position: absolute; right: 20px; top: 15px; font-size: 1.5em; color: white; cursor: pointer; }
        .img-container { text-align: center; margin: 30px 0; }
        .img-container img { max-width: 100%; height: auto; border-radius: 10px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #e0e0e0; padding: 5px 10px; border-radius: 20px; margin-right: 5px; margin-bottom: 5px; }
        .footer { margin-top: 50px; padding-top: 20px; border-top: 1px solid #ddd; text-align: center; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
            h1 { font-size: 2em; }
        }
