/* Стиль для универсальной кнопки */
.button-primary {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1.125rem;
	font-weight: bold;
	color: white;
	background-color: #FF6B35;
	border-radius: 16px;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px -5px rgba(255, 107, 53, 0.3);
}

/* Цвет наведения на кнопку */
.button-primary:hover {
	background-color: #E85D2A;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 15px 25px -5px rgba(255, 107, 53, 0.4);
}

.button-primary:active {
	transform: translateY(0);
}
