.cta-price a{
    width: 50%;                           /* w-full */
    background-color: var(--color-red-600);             /* bg-rost-red (УКАЖИТЕ ВАШ ЦВЕТ) */
    color: #ffffff;                        /* text-white */
    padding-top: 0.75rem;                  /* py-3 (12px) */
    padding-bottom: 0.75rem;               /* py-3 (12px) */
    border-radius: 0.75rem;                /* rounded-xl (12px) */
    font-size: 0.875rem;                   /* text-sm (14px) */
    line-height: 1.25rem;                  /* text-sm (20px) */
    font-weight: 700;                      /* font-bold */
    text-align: center;                    /* text-center */
    transition: all 0.15s ease-in-out;     /* transition-all */

    /* Дополнительные свойства для кнопок на всякий случай */
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.cta-price a:hover{
    background-color: #e2e8f0;             /* hover:bg-slate-200 */
    color: #0f172a;                        /* hover:text-slate-900 */
}