body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 2px solid #FF6B6B; }
        .logo { font-size: 28px; font-weight: bold; color: #FF6B6B; text-decoration: none; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #333; font-weight: 500; }
        .mobile-menu-btn { display: none; background: #FF6B6B; color: white; border: none; padding: 8px 12px; border-radius: 5px; }
        h1 { font-size: 32px; color: #FF6B6B; margin-bottom: 20px; }
        h2 { font-size: 24px; color: #4ECDC4; margin: 30px 0 15px; }
        h3 { font-size: 20px; color: #45B7D1; margin: 25px 0 10px; }
        .btn { display: inline-block; background: #FF6B6B; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .image-container { text-align: center; margin: 30px 0; }
        img { max-width: 100%; height: auto; border-radius: 10px; }
        footer { margin-top: 50px; padding-top: 20px; border-top: 1px solid #ddd; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #eee; padding: 5px 10px; margin-right: 5px; border-radius: 5px; text-decoration: none; color: #333; }
        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-menu-btn { display: block; }
            .active nav { display: block; }
            nav ul { flex-direction: column; gap: 10px; }
        }
