/* Step Headers */
.step-header[data-step] {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-header[data-step]:hover {
    color: #1268B1;
}

/* Step Icon Rotation */
.step-icon {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.step-icon.rotated {
    transform: rotate(180deg);
}

/* Step Content - Optimized for smooth animations */
.step2-content,
.step3-content,
.step4-content {
    overflow: hidden;
}

/* Prevent layout shifts during animation */
.step2-content *,
.step3-content *,
.step4-content * {
    box-sizing: border-box;
}

/* Ensure smooth animation by preventing margin collapse */
.step2-content .grievance-step-item,
.step3-content .grievance-step-item,
.step4-content .grievance-step-item {
    margin: 0;
    padding: 10px 0;
}