LinearLayout (vertical)
├─ TextView (title)
├─ ScrollView
│ └─ LinearLayout (vertical)
│ ├─ LinearLayout (horizontal) [Reason 1]
│ │ ├─ ImageView (icon)
│ │ └─ TextView (description)
│ ├─ LinearLayout (horizontal) [Reason 2]
│ │ ├─ ImageView (icon)
│ │ └─ TextView (description)
│ └─ LinearLayout (horizontal) [Reason 3]
│ ├─ ImageView (icon)
│ └─ TextView (description)
The main vertical layout holds a title at the top and a scrollable area below. Inside the scroll, each reason is shown horizontally with an icon on the left and text on the right. This layout stacks reasons vertically for easy reading.