flowchart LR
subgraph G1["Conceptual"]
A["Verbal<br/>description"]
B["Causal-Loop<br/>Diagram"]
end
C["Model<br/>Formulation"]
D["Model<br/>Behaviour"]
E((("Policy<br/>Implications")))
A ==> B
B --> C
C --> D
D --> E
D -..-> B
E -.-> B
E -.-> A
classDef yellow fill:#FFDC00,color:#2b2b2b,stroke-width:0px,text-align:center;
classDef gray fill:#999999,color:#ffffff,stroke-width:0px,text-align:center;
style G1 fill:#2b2b2b,color:#ffffff,stroke:#eee,stroke-width:2px
class A,B yellow
class C,D,E gray

