* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #20242a;
	background: #fff;
	line-height: 1.6;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    width: 180px;
    height: auto;
}


.container {
	width: min(1120px, 92%);
	margin: 0 auto;
}


.site-header {
	background: #fff;
	border-bottom: 1px solid #ececec;
}

.header-inner {
	height: 86px;
	display: flex;
	align-items: center;
	gap: 50px;
}
:root {
    --brand-red: #e5231b;
    --brand-dark: #222222;
    --brand-gray: #777777;
    --brand-light: #f5f5f5;
    --brand-border: #dddddd;
}

h1, h2, h3,
.logo,
.main-nav {
    font-family: "Rajdhani", Arial, sans-serif;
}
h1 {
    letter-spacing: 0.5px;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 38px;
}

.main-nav a {
	position:
		relative;
	padding: 32px 0;
	color: #333;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: color .2s ease;
}

.main-nav a:hover {
	color: #0875be;
}

.main-nav a.active {
	color: #0875be;
}

.main-nav a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: #0875be;
}

.contact-button {
	margin-left: 15px;
	padding: 11px 20px;
	border: 1px solid #ddd;
	color: #222;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all .2s ease;
}

.contact-button:hover {
	border-color: #0875be;
	color: #0875be;
}

@media (max-width: 800px) {

	.header-inner {
		height: auto;
		padding:
			20px 0;
		flex-wrap: wrap;
		gap: 18px;
	}

	.logo {
		width: 100%;
	}

	.main-nav {
		gap: 20px;
		flex-wrap: wrap;
	}

	.main-nav a {
		padding: 5px 0;
	}

	.main-nav a.active::after {
		bottom: -5px;
	}

	.contact-button {
		display: none;
	}
}

.hero {
	padding: 90px 0;
	background: #f4f7fa;
}

.hero h1 {
	margin: 0 0 20px;
	max-width: 800px;
	font-size: clamp(38px, 5vw, 62px);
	line-height: 1.1;
}

.hero-text {
	max-width: 700px;
	font-size: 20px;
}

.button {
	display: inline-block;
	margin-top: 25px;
	padding: 13px 24px;
	background: #1769aa;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
}

.services {
	padding: 70px 0;
}

.services h2 {
	font-size: 34px;
	margin-top: 0;
}

.cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.card {
	padding: 28px;
	border: 1px solid #e3e6e9;
	border-radius: 8px;
}

.card h3 {
	margin-top: 0;
	color: #1769aa;
}

.page-section {
	padding: 60px 0;
}

.content {
	max-width: 900px;
}

.content h1 {
	font-size: 42px;
}

.site-footer {
    margin-top: 70px;
    padding: 40px 0;
    background: #f5f5f5;
    color: #333;
    border-top: 3px solid #e5231b;
}

.site-footer a {
    color: #333;
    text-decoration: none;
}

.site-footer a:hover {
    color: #e5231b;
}

.footer-brand img {
    width: 120px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

@media (max-width: 800px) {
	.header-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 18px 0;
		gap: 15px;
	}

	.main-nav {
		gap: 14px;
		flex-wrap: wrap;
	}

	.hero {
		padding: 55px 0;
	}

	.cards {
		grid-template-columns: 1fr;
	}

	.footer-inner {
		flex-direction: column;
	}
}