* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	background-color: #f1f3f4;
	color: #202124;
}

/* Шапка */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header .logo {
	font-size: 24px;
	font-weight: bold;
	color: #1a73e8;
}

.header .nav a {
	margin-left: 20px;
	text-decoration: none;
	color: #202124;
	font-weight: 500;
}

.header .nav a:hover {
	color: #1a73e8;
}

/* Hero-секция */
.hero {
	text-align: center;
	padding: 60px 20px;
	background-color: #fff;
	margin: 20px auto;
	max-width: 1200px;
	border-radius: 8px;
}

.hero h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.hero p {
	font-size: 18px;
	color: #5f6368;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero .cta-button {
	padding: 12px 24px;
	background-color: #1a73e8;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
}

.hero .cta-button:hover {
	background-color: #1557b0;
}

/* Секция возможностей */
.features {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.feature-card {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.feature-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.feature-card p {
	color: #5f6368;
	font-size: 16px;
}

/* Секция преимуществ */
.benefits {
	background-color: #f8f9fa;
	padding: 60px 20px;
	text-align: center;
}

.benefits h2 {
	font-size: 32px;
	margin-bottom: 40px;
}

.benefits-list {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.benefit-item {
	padding: 20px;
}

.benefit-item h4 {
	font-size: 18px;
	margin-bottom: 10px;
}

.benefit-item p {
	color: #5f6368;
	font-size: 14px;
}

/* Футер */
.footer {
	background-color: #202124;
	color: #fff;
	padding: 20px;
	text-align: center;
}

.footer a {
	color: #8ab4f8;
	text-decoration: none;
	margin: 0 10px;
}

.footer a:hover {
	text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
	.header {
		flex-direction: column;
		align-items: flex-start;
	}

	.header .nav {
		margin-top: 10px;
	}

	.hero h1 {
		font-size: 28px;
	}

	.hero p {
		font-size: 16px;
	}

	.features, .benefits-list {
		grid-template-columns: 1fr;
	}
}