/* Стиль для универсальной кнопки */
.button-primary {
	display: inline-block;
	padding: 16px 48px;
	font-size: 1.1rem;
	font-weight: 700;
	color: white;
	background-color: #7c3aed; /* Violet-600 */
	border-radius: 1rem;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 25px -10px rgba(124, 58, 237, 0.4);
}

/* Цвет наведения на кнопку */
.button-primary:hover {
	background-color: #6d28d9; /* Violet-700 */
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 15px 30px -10px rgba(124, 58, 237, 0.5);
}

