diff --git a/README.md b/README.md
index 7c81e0b..8d71ad3 100644
--- a/README.md
+++ b/README.md
@@ -48,12 +48,14 @@ yarn add mandoo-editor
pnpm add mandoo-editor
```
-Then import the styles once (e.g. in your root layout):
+> **⚠️ Required — add this import wherever you use the editor:**
```tsx
-import "mandoo-editor/styles";
+import 'mandoo-editor/styles';
```
+Add it in your layout, page, or component — wherever `MandooEditor` is rendered. Without it the editor has no styling.
+
---
## Quick Start
@@ -115,6 +117,50 @@ ref.current?.clear(); // clear content
---
+## Form Integration
+
+MandooEditor outputs HTML or Markdown. There are two ways to use it in a form:
+
+### Option 1 — `name` prop (native forms, FormData, Server Actions)
+
+Add a `name` prop and a hidden `` is automatically rendered. Works with any form library or native HTML form submission.
+
+```tsx
+// Native HTML form
+