.ifag-step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.ifag-step-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #ce2139;
}

.ifag-step-card:hover .ifag-step-icon-box {
    background: #ce2139;
    color: #ffffff;
}

.ifag-step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f1f1;
    line-height: 1;
}

.ifag-step-icon-box {
    width: 60px;
    height: 60px;
    border: 1px solid #ce2139;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #fff1f2;
    color: #ce2139;
    font-size: 24px;
    transition: all 0.3s ease;
}

.ifag-step-icon-box svg, 
.ifag-step-icon-box i {
    width: 24px;
    height: 24px;
}

.ifag-step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem; /* Reduced from 1.25 */
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ifag-step-description {
    font-size: 0.88rem; /* Reduced from 0.95 */
    color: #666;
    line-height: 1.6;
    margin-bottom: 0; /* Changed from 20px to handle cards without badges */
}

.ifag-step-description:not(:last-child) {
    margin-bottom: 20px;
}

.ifag-step-description b, 
.ifag-step-description strong {
    color: #1a1a1a;
    font-weight: 700;
}

.ifag-step-footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ifag-step-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ifag-step-badge-primary {
    background: #fff1f2;
    color: #ce2139;
}

.ifag-step-badge-secondary {
    background: #ffffff;
    color: #666;
    border: 1px solid #f0f0f0;
}

/* Layout: Side Icon (for the bottom right card) */
.ifag-step-card.layout-side {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.ifag-step-card.layout-side .ifag-step-content {
    flex: 1;
}

.ifag-step-card.layout-side .ifag-step-icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
}
