:root {
	--green-dark: #2E7D32;
	--green: #43A047;
	--green-light: #66BB6A;
	--green-bg: #E8F5E9;

	--blue: #1E88E5;
	--blue-dark: #1565C0;
	--blue-light: #64B5F6;

	--orange: #F57C00;
	--orange-light: #FFB74D;

	--dark: #1B2A1D;
	--text: #333333;
	--text-light: #666666;

	--white: #FFFFFF;

	--gray-bg: #F5F7F2;
	--gray-light: #E8E8E8;

	--shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

	--radius: 12px;
	--radius-sm: 8px;

	--transition: all 0.3s ease;
}


*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: var(--dark);
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}


/* Buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	padding: 12px 28px;

	border: 2px solid transparent;
	border-radius: var(--radius-sm);

	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 15px;

	cursor: pointer;
	transition: var(--transition);
}

.btn-primary {
	color: var(--white);
	background: var(--green);
	border-color: var(--green);
}

.btn-primary:hover {
	background: var(--green-dark);
	border-color: var(--green-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}


@media (max-width: 768px) {

	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
}