/* Стиль для универсальной кнопки */
.button-primary {
	display: inline-block;
	padding: 20px 60px;
	font-size: 1.2rem;
	font-weight: bold;
	color: white;
	background-color: #2563eb;
	border-radius: 15px;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Цвет наведения на кнопку */
.button-primary:hover {
	background-color: #0ea5e9;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}
