.st-section-dc775663 {
    padding: 60px 24px;
    background-color: #f0f7fa;
    font-family: inherit;
    box-sizing: border-box;
}

.st-max-width-dc775663 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.st-header-dc775663 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.st-title-dc775663 {
    font-size: 32px;
    font-weight: 800;
    color: #005C8A;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.st-desc-dc775663 {
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    margin: 0;
}

/* Grid layout with CSS Grid for equal widths/heights */
.st-grid-dc775663 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch; /* Forces equal height of cards on the same row */
    position: relative;
}

/* Subtiele verbindingslijn tussen de stappen op desktop */
@media (min-width: 992px) {
    .st-grid-dc775663::before {
        content: "";
        position: absolute;
        top: 56px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: repeating-linear-gradient(to right, #005C8A 0, #005C8A 8px, transparent 8px, transparent 16px);
        opacity: 0.2;
        z-index: 1;
    }
}

.st-card-dc775663 {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 24px rgba(0, 92, 138, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.st-card-dc775663:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 92, 138, 0.08);
}

.st-card-header-dc775663 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 24px;
}

.st-card-num-dc775663 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #005C8A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-card-icon-dc775663 {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-card-icon-dc775663 i {
    font-size: 28px;
    color: #3CA847;
}

.st-card-icon-dc775663 svg {
    width: 28px;
    height: 28px;
    fill: #3CA847;
}

.st-card-title-dc775663 {
    font-size: 18px;
    font-weight: 700;
    color: #005C8A;
    margin: 0 0 12px 0;
    line-height: 1.4;
    min-height: 50px; /* Zorgt dat de titels op dezelfde hoogte beginnen/eindigen */
}

.st-card-desc-dc775663 {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Button */
.st-btn-wrapper-dc775663 {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.st-btn-dc775663 {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3CA847;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid transparent;
}

.st-btn-dc775663:hover {
    background-color: #328b3a;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .st-grid-dc775663 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .st-grid-dc775663 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .st-section-dc775663 {
        padding: 48px 16px;
    }
    
    .st-title-dc775663 {
        font-size: 26px;
    }
}
