.animated-button {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: #1054f3;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.animated-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg,
            transparent 45%,
            rgba(255, 255, 255, 0.3) 45%,
            rgba(255, 255, 255, 0.3) 55%,
            transparent 55%);
    animation: diagonal-shine 2s linear infinite;
    z-index: 2;
}

.animate-slow.animated-button::before {

    animation: diagonal-shine 3s linear infinite;

}

.animated-button span {
    position: relative;
    z-index: 3;
}

@keyframes diagonal-shine {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }

    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.faq-icon {
    width: 24px;
    height: 24px;
    animation: bounce 1s infinite;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}