body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8fafc;
}
.section-title {
    text-align: center;
    /* margin-bottom: 50px; */
}
/* .section-title h2 {
    font-weight: 700;
} */
.process-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
    height: 100%;
}
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.process-icon {
    font-size: 40px;
    color: var(--brand, #22c55e);
    margin-bottom: 20px;
}
.stats {
    margin-top: 60px;
}
.stat-box {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}
.stat-box:hover {
    transform: translateY(-5px);
}
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--brand, #22c55e);
}
.stat-text {
    font-size: 0.9rem;
    color: #6b7280;
}