.fintech-cta-wrapper-f0e9999f {
    display: flex;
    justify-content: center;
    width: 100%;
}

.fintech-cta-group-f0e9999f {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 767px) {
    .fintech-cta-group-f0e9999f {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    .fintech-cta-group-f0e9999f a {
        width: 100%;
        justify-content: center;
    }
}

.fintech-btn-f0e9999f {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.fintech-btn-f0e9999f .btn-icon {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.fintech-btn-primary-f0e9999f {
    background-color: #E0A100;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(224, 161, 0, 0.4);
    border: 2px solid #E0A100;
}

.fintech-btn-primary-f0e9999f:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 161, 0, 0.6);
    color: #ffffff;
}

.fintech-btn-secondary-f0e9999f {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.fintech-btn-secondary-f0e9999f:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}