body,
button,
input,
select,
textarea {
	font-family: "Plus Jakarta Sans", Arial, sans-serif;
}


:root {
	--theme-primary: #0d6efd;
	--theme-primary-dark: #084298;
	--theme-dark: #101828;
	--theme-text: #475467;
	--theme-muted: #667085;
	--theme-border: #e7eaf0;
	--theme-bg: #f6f8fb;
	--theme-white: #ffffff;
	--theme-radius: 18px;
	--theme-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", Arial, sans-serif;
	color: var(--theme-text);
	background: var(--theme-white);
	font-size: 15px;
	line-height: 1.7;
}
a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.theme-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 18px;
}

