:root {

	/* Brand */

	--pr-primary: #2E7D32;
	--pr-primary-dark: #1B5E20;

	--pr-secondary: #F59E0B;

	/* Neutral */

	--pr-text: #1F2937;
	--pr-text-light: #6B7280;

	--pr-bg: #FFFFFF;

	--pr-bg-light: #F8FAFC;

	--pr-border: #E5E7EB;

	/* Status */

	--pr-success: #16A34A;

	--pr-danger: #DC2626;

	/* Radius */

	--pr-radius-sm: 6px;

	--pr-radius: 12px;

	--pr-radius-lg: 20px;

	/* Shadow */

	--pr-shadow:

		0 10px 25px rgba(0,0,0,.08);

	/* Width */

	--pr-container: 1200px;

	/* Typography */

	--pr-font:

		Inter,

		system-ui,

		-apple-system,

		BlinkMacSystemFont,

		"Segoe UI",

		sans-serif;

}

*,
*::before,
*::after {

	box-sizing: border-box;

}

html {

	scroll-behavior: smooth;

}

body {

	margin: 0;

	font-family: var(--pr-font);

	font-size: 16px;

	line-height: 1.7;

	color: var(--pr-text);

	background: var(--pr-bg);

}

img {

	display: block;

	max-width: 100%;

	height: auto;

}

a {

	text-decoration: none;

	color: inherit;

}

h1,
h2,
h3,
h4 {

	margin-top: 0;

	line-height: 1.25;

}

p:last-child {

	margin-bottom: 0;

}