{/* Section-specific content */}
```
**Key Pattern Notes:**
- `useInvertedBackground` is a required prop: `"noInvert" | "invertDefault" | "invertCard"`
- `"invertCard"` creates a card-style section with expanded width and rounded corners
- `"invertDefault"` creates a full-width inverted section
- `"noInvert"` is the standard section with no background
- Always use explicit string equality checks (not truthy/falsy)
- Text colors must check for both `"invertDefault"` and `"invertCard"` modes
## Implementation Checklist
### Core Requirements
- [ ] Add `"use client"` directive if needed (hooks, interactivity)
- [ ] Use explicit prop interfaces (no over-complicated types)
- [ ] Set appropriate defaults for optional props
- [ ] Add `displayName` for debugging
- [ ] Wrap in `React.memo()` for performance
- [ ] Use semantic HTML tags (`