:root {
	--color-text: #16233a;
	--color-muted: #53657c;
	--color-border: #dde7f2;
	--color-brand: #064aa7;
	--color-brand-dark: #003b8e;
	--color-brand-light: #eaf5ff;
	--color-surface: #ffffff;
	--color-soft: #f4f9ff;
	--color-heading: #143f7c;
	--font-body: "Roboto", sans-serif;
	--font-script: "Segoe Script", "Brush Script MT", cursive;
	--container: 1120px;
	--section-space: 58px;
	--radius-sm: 8px;
	--radius-md: 12px;
	--shadow-soft: 0 12px 28px rgba(14, 64, 130, 0.12);
	--header-height: 72px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--color-text);
	background: var(--color-surface);
	font-family: var(--font-body);
	line-height: 1.5;
}

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

a:hover,
a:focus {
	color: var(--color-brand-dark);
	text-decoration: underline;
}

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

.container {
	width: min(var(--container), calc(100% - 64px));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 8px 12px;
	background: var(--color-surface);
	clip: auto;
	color: var(--color-text);
}

.site-main {
	margin: 0;
}

.section-title {
	margin: 0 0 32px;
	color: var(--color-heading);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.section-title::after {
	display: block;
	width: 90px;
	height: 3px;
	margin: 12px auto 0;
	background:
		linear-gradient(var(--color-brand), var(--color-brand)) center / 30px 3px no-repeat,
		linear-gradient(#d8dde4, #d8dde4) center / 90px 1px no-repeat;
	background-repeat: no-repeat;
	content: "";
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 28px;
	border: 0;
	border-radius: 7px;
	background: linear-gradient(180deg, #0758c6 0%, #003f9d 100%);
	box-shadow: 0 8px 18px rgba(0, 65, 154, 0.24);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:focus {
	color: #ffffff;
	text-decoration: none;
}

.search-form {
	display: flex;
	gap: 10px;
	max-width: 520px;
}

.search-field {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	font: inherit;
}

.search-submit {
	padding: 10px 16px;
	border: 0;
	border-radius: 6px;
	background: var(--color-brand);
	color: #ffffff;
	cursor: pointer;
	font: inherit;
}

@media (max-width: 768px) {
	:root {
		--section-space: 44px;
	}

	.container {
		width: min(var(--container), calc(100% - 28px));
	}

	.section-title {
		font-size: 22px;
	}
}
