/* Стиль для универсальной кнопки */
.button-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 40px;
	font-size: 1.05rem;
	font-weight: 600;
	color: white;
	background-color: #11d473;
	border-radius: 980px; /* Pill shape */
	text-decoration: none;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

/* Цвет наведения на кнопку */
.button-primary:hover {
	background-color: #0fb864;
	transform: scale(1.02);
}

.button-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 40px;
	font-size: 1.05rem;
	font-weight: 600;
	color: #1d1d1f;
	background-color: transparent;
	border: 1.5px solid #1d1d1f;
	border-radius: 980px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.button-secondary:hover {
	background-color: #1d1d1f;
	color: white;
}
