/* Zigzag Layout */
.zigzag-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.zigzag-item {
    display: flex;
    align-items: center;
    justify-content: center; /* Center items instead of space-between */
    gap: 60px; /* Slightly increased from 20px for better spacing */
}

.zigzag-item.reverse {
    flex-direction: row-reverse;
}

.zigzag-content {
    flex: 0 0 auto; /* Don't grow, don't shrink */
    max-width: 400px; /* Further reduced to bring content inward */
    width: 100%;
    text-align: left; /* Ensure left alignment */
}

.zigzag-image {
    flex: 0 0 auto; /* Don't grow or shrink */
    display: flex;
    justify-content: center;
}

.zigzag-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: -0.9px; /* Added letter spacing */
}

.zigzag-content p {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Zigzag */
@media (max-width: 900px) {
    .zigzag-item, 
    .zigzag-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .zigzag-content {
        text-align: center;
        max-width: 100%;
    }
}
