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