/* Стиль для универсальной кнопки */
.button-primary {
	display: inline-block;
	padding: 20px 60px;
	font-size: 1.2rem;
	font-weight: bold;
	color: #ffffff;
	background-color: #f04646;
	border-radius: 15px;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(240, 70, 70, 0.3);
}

/* Цвет наведения на кнопку */
.button-primary:hover {
	background-color: #d63939;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(240, 70, 70, 0.4);
}
