/* how-it-works.css */

.how-it-works {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.how-it-works h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
    font-weight: 700;
}

.step-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 260px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-icon {
    font-size: 36px;
    color: #138808;
    margin-bottom: 15px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .step-box {
        max-width: 100%;
    }

    .how-it-works h2 {
        font-size: 26px;
    }
}
