.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    margin: 0px 0px 48px 0px;
    background-color: #2541D4;
    border-radius: 9999px; /* Максимальное скругление */
    color: #fff !important; /* Белый текст */
    font-size: 20px;
    font-weight: 600; /* Semi Bold */
    text-align: center;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 640px) {
    .btn-primary {
        width: 100%; /* На всю ширину экрана */
        box-sizing: border-box; /* Учитывает padding в ширине */
    }
}

.btn-primary:hover {
    background-color: #1d37aa; /* Немного темнее при наведении */
}