/* Mobile-specific styles for How It Works section */

/* Place after how-it-works.css */

@media (max-width: 768px) {
    .how-it-works {
        padding: 50px 20px;
    }

    .how-it-works .section-header h2 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .steps-container {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        margin-top: 32px;
    }

    .step-card {
        width: 100%;
        max-width: 340px;
        padding: 32px 24px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: -18px;
    }

    .step-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .step-card p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .step-icon {
        font-size: 26px;
        margin-top: 16px;
    }
}

/* Smaller phones */
@media (max-width: 480px) {
    .how-it-works {
        padding: 40px 12px;
    }

    .how-it-works .section-header h2 {
        font-size: 26px;
    }

    .step-card {
        max-width: 300px;
        padding: 28px 20px;
    }

    .step-card h3 {
        font-size: 17px;
    }

    .step-card p {
        font-size: 13px;
    }
}
