html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	background-color: #f9fafb;
	color: #111827;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 50px;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.logo {
	font-size: 24px;
	font-weight: bold;
}

nav a {
	margin-left: 20px;
	color: #6b7280;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s;
}

nav a:hover {
	color: #4CAF9A;
}

.btn {
	padding: 15px 30px;
	background-color: #4CAF9A;
	color: white;
	text-decoration: none;
	font-size: 18px;
	border: none;
	border-radius: 8px;
	transition: background 0.3s;
	display: inline-block;
}

.btn:hover {
	background-color: #45a089;
	cursor: pointer;
}
.buy-button {
	padding: 15px 30px;
	background-color: #4CAF9A;
	color: white;
	text-decoration: none;
	font-size: 18px;
	border: none;
	border-radius: 8px;
	transition: background 0.3s;
	display: inline-block;
}

.buy-button:hover {
	background-color: #45a089;
	cursor: pointer;
}

section {
	padding: 20px 20px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
	opacity: 1;
	transform: none;
}

.container {
	max-width: 1500px;
	margin: 0 auto;
}

.card {
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	padding: 30px;
	margin-bottom: 20px;
	width: 300px;
	text-align: center;
	transition: all 0.3s ease;
}

.card:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

footer {
	background-color: #ffffff;
	padding: 30px 20px;
	text-align: center;
	color: #6b7280;
	font-size: 14px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.divider {
	height: 1px;
	background: linear-gradient(to right, transparent, #d1d5db, transparent);
	margin: 10px 0;
}

.review-block {
	width: 100%;
	height: 400px;
	background: #ffffff;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center; /* Центрируем текст и подпись */
	align-items: center;
	position: relative;
	color: #6b7280;
	padding: 20px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.menu-link {
		display: none;
	}
}

.review-block {
	width: 100%;
	height: 400px;
	background: #ffffff;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #6b7280;
	padding: 20px;
	box-sizing: border-box;
}

#review {
	font-size: 18px;
	max-width: 400px;
	font-style: italic;
	text-align: center;
}

#review-dots {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 10px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
}

#review-dots button {
	width: 10px;
	height: 10px;
	background-color: #d1d5db;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s;
	padding: 0;
}

#review-dots button.active {
	background-color: #4CAF9A;
}