.custom-buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between; /* Равномерное распределение кнопок */
    margin-top: 20px;
    padding: 0;
    background: none;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 20px;
    flex-wrap: wrap; /* Позволяет кнопкам переходить на новую строку */
}

.custom-button {
    position: relative;
    display: inline-block;
    padding: 16px 24px; /* Увеличиваем высоту кнопок */
    background-color: #2b51c9;
    color: #fff;
    border-radius: 8px;
    text-decoration: none; /* Убираем подчеркивание ссылки */
    font-weight: 400;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    width: 25%; /* Кнопка занимает 25% ширины контейнера */
    text-align: center; /* Центрируем текст в кнопке */
}


.custom-button:hover {
    transform: translateY(-6px);
}


.custom-button:hover {
    text-decoration: none; /* Убираем подчеркивание при наведении */
    background-color: #c9a32b;
    color: #fff;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
    .custom-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .custom-button {
        width: 80%; /* Кнопки занимают 80% ширины экрана */
        max-width: 300px; /* Ограничиваем максимальную ширину */
    }
}
