.process-tabs-7986d4bc {
    width: 100%;
    font-family: inherit;
}

.process-tabs-7986d4bc .tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.process-tabs-7986d4bc .tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.process-tabs-7986d4bc .tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.process-tabs-7986d4bc .tab-pane.active {
    display: block;
}

.process-tabs-7986d4bc .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-tabs-7986d4bc .process-step {
    text-align: center;
    padding: 20px;
}

.process-tabs-7986d4bc .step-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.process-tabs-7986d4bc .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    position: relative;
}

.process-tabs-7986d4bc .step-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.process-tabs-7986d4bc .step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.process-tabs-7986d4bc .step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.process-tabs-7986d4bc .step-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
