.training-button {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 300px;
    margin: 0 auto;
}

/* Кнопка */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ff7a00;              /* яркий оранжевый */
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease;
}

.cta-button img {
    height: 20px;
}

.cta-button:hover {
    background: #ff8f2b;
    transform: scale(1.05);
}

/* Мигающая стрелочка */
.attention-arrow {
    font-size: 28px;
    color: #ff7a00;
    animation: arrowBlink 1.1s infinite ease-in-out;
    transform: rotate(20deg); /* лёгкий наклон */
    cursor: default;
}

/* Анимация мигания */
@keyframes arrowBlink {
    0%   { opacity: 1; transform: rotate(20deg) translateX(0); }
    50%  { opacity: 0.2; transform: rotate(20deg) translateX(3px); }
    100% { opacity: 1; transform: rotate(20deg) translateX(0); }
}