.mis-admission-steps-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.mis-step-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mis-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mis-step-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #1a4b8e;
    color: white;
}

.mis-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: white;
    color: #1a4b8e;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.mis-step-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.mis-step-content {
    padding: 20px;
    background: #f9f9f9;
    color: #fff;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .mis-step-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mis-step-number {
        margin-bottom: 10px;
    }
}