.angel-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
}
.angel-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;
    border-radius: 50px;

    background: linear-gradient(135deg, #ffa500, #ff7a00);
    color: #fff;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.25s ease;

    max-width: 100%;
    text-align: center;
}
.angel-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: #fff;
}
.angel-icon {
    width: 28px;
    height: auto;
    flex-shrink: 0;
}
.angel-text {
    line-height: 1.2;
}
@media (max-width: 992px) {
    .angel-cta-btn {
        font-size: 14px;
        padding: 8px 14px;
    }

    .angel-icon {
        width: 22px;
    }
}

@media (max-width: 600px) {

    .angel-cta-wrapper {
        justify-content: center;
    }

    .angel-cta-btn {
        width: 50%;
        border-radius: 12px;
        padding: 12px;
    }

    .angel-left,
    .angel-right {
        display: none;
    }
}
