/* Import FontAwesome for icons */
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

    /* Shared styling for frontend and editor */
    .how-it-works-section,
    .how-it-works-editor {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: var(--color-green-light-100);
        padding: 30px;
    }

    .how-it-works-section h2,
    .how-it-works-editor h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: var(--color-gray-900);
    }

    .how-it-works-section p,
    .how-it-works-editor p {
        font-size: 1.2rem;
        color: var(--color-gray-500);
        font-weight: 400;
        font-family: 'Satoshi', sans-serif;
        margin-bottom: 0;
    }

    .how-it-works-section .steps-grid,
    .how-it-works-editor .steps-grid {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 50px;
    }

    .how-it-works-section .step-item,
    .how-it-works-editor .step-item {
        background: var(--color-green-light-200);
        padding: 20px;
        width: calc(33.333% - 14px);
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .step-image-wrapper {
        position: relative;
        width: 100%;
    }

    .step-icon {
        position: absolute;
        bottom: -35px;
        left: 20px;
        width: 70px;
        height: 70px;
        background-color: var(--color-green-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
        z-index: 1;
    }

    .step-icon i {
        font-size: 1.5rem;
        color: white;
    }

    .step-image {
        width: 100%;
        aspect-ratio: 4/3;
        overflow: hidden;
    }

    .step-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .step-title-description {
        margin-left: 13px;
    }

    .step-title-description h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    /* Responsive: 2 kolommen op tablet */
    @media (max-width: 900px) {
        .how-it-works-section .step-item,
        .how-it-works-editor .step-item {
            width: calc(50% - 10px);
        }
    }

    /* Responsive: step items breder op kleine mobiel */
    @media (max-width: 500px) {
        .how-it-works-section .step-item,
        .how-it-works-editor .step-item {
            width: 100%;
        }
    }