.zigzag-wrapper-2c4d262d {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    background-color: #ffffff;
}

.zigzag-header-2c4d262d {
    text-align: center;
    margin-bottom: 60px;
}

.zigzag-title-2c4d262d {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2530;
    margin-bottom: 12px;
}

.zigzag-subtitle-2c4d262d {
    font-size: 1.1rem;
    color: #7A7A7A;
}

.zigzag-container-2c4d262d {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Route SVG hidden on mobile, visible on desktop */
.step-route-svg-2c4d262d {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100% - 150px);
    z-index: 1;
    pointer-events: none;
    display: none;
}

/* Mobile route line default */
.mobile-route-line-2c4d262d {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    width: 2px;
    background-color: #6EC1E4;
    z-index: 1;
    opacity: 0.4;
}

.zigzag-grid-2c4d262d {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Step Card */
.step-card-container-2c4d262d {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.step-card-2c4d262d {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 3;
    width: 100%;
    margin-left: 40px; /* Offset for mobile vertical line */
}

.step-card-2c4d262d:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(110, 193, 228, 0.15);
    border-color: #6EC1E4;
}

.step-card-header-2c4d262d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.step-number-2c4d262d {
    font-size: 2.2rem;
    font-weight: 800;
    color: #6EC1E4;
    line-height: 1;
    opacity: 0.8;
}

.step-icon-2c4d262d {
    font-size: 1.8rem;
    color: #61CE70;
}

.step-title-2c4d262d {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2530;
    margin: 0 0 10px 0;
}

.step-desc-2c4d262d {
    color: #7A7A7A;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .step-route-svg-2c4d262d {
        display: block;
    }

    .mobile-route-line-2c4d262d {
        display: none;
    }

    .zigzag-grid-2c4d262d {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        row-gap: 50px;
    }

    /* Stappen asymmetrisch positioneren */
    .step-card-container-2c4d262d {
        width: 100%;
        margin-left: 0 !important;
    }

    .step-card-2c4d262d {
        max-width: 440px;
        margin-left: 0;
    }

    /* Left Side rows (1, 3) */
    .left-side-2c4d262d {
        justify-content: flex-start;
        padding-left: 5%;
    }

    /* Right Side rows (2, 4) */
    .right-side-2c4d262d {
        justify-content: flex-end;
        padding-right: 5%;
        margin-top: 60px; /* Ladder/trap effect */
    }
}
