.process-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-card__header {
    background: #f9fafb;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.process-card__title {
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.process-card__body {
    padding: 2rem 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f3f4f6;
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: var(--color-black);
    color: #fff;
    border-radius: 5px;
    font-size: var(--fs-small);
}

.step-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
    padding-top: 2px;
}

@media (max-width: 768px) {
    .process-container {display: flex; flex-direction: column;}
}
