
/* Стили для зелёной кнопки */
.custom-green-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #41db34;
    color: #ffffff !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Ховер-эффект */
.custom-green-btn:hover {
    background-color: #36c32c;
}

