body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        header { background-color: #FF4500; color: white; padding: 15px 20px; position: relative; }
        .logo { font-size: 24px; font-weight: bold; text-decoration: none; color: white; }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .menu-btn { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 20px; }
        .nav-links a { color: white; text-decoration: none; }
        .container { max-width: 1200px; margin: 20px auto; padding: 0 20px; }
        h1 { color: #FF4500; margin-bottom: 20px; }
        h2 { color: #333; margin-top: 30px; border-bottom: 2px solid #FF4500; padding-bottom: 5px; }
        h3 { color: #555; margin-top: 25px; }
        .btn { display: inline-block; background-color: #FF4500; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        footer { background-color: #333; color: white; padding: 20px; text-align: center; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #555; color: white; padding: 5px 10px; margin: 5px; border-radius: 3px; text-decoration: none; }
        @media (max-width: 768px) {
            .menu-btn { display: block; }
            .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 60px; left: 0; background-color: #FF4500; }
            .nav-links.active { display: flex; }
            .nav-links li { margin: 10px 20px; }
        }
